diff --git a/calbums.cpp b/calbums.cpp index a81d4b9..2fc786d 100644 --- a/calbums.cpp +++ b/calbums.cpp @@ -122,13 +122,15 @@ cAlbums* cAlbums::parentAlbums() return(m_parentAlbums); } -void cAlbums::loadImages() +bool cAlbums::loadImages() { if(!m_imagesList) { m_imagesList = new cImagesList(m_dbDigikam, m_dbThumbnail, m_albumsList, this); m_imagesList->load(this); + return(true); } + return(false); } cImagesList* cAlbums::imagesList() diff --git a/calbums.h b/calbums.h index 8f95ce3..9b6eab8 100644 --- a/calbums.h +++ b/calbums.h @@ -49,7 +49,7 @@ public: void setParentAlbums(cAlbums* root); cAlbums* parentAlbums(); - void loadImages(); + bool loadImages(); cImagesList* imagesList(); void setItem(QStandardItem* item); diff --git a/cimage.cpp b/cimage.cpp index edcb198..20b0959 100644 --- a/cimage.cpp +++ b/cimage.cpp @@ -8,6 +8,8 @@ #include "opencv2/imgproc/types_c.h" #include "opencv2/imgproc.hpp" +#include "pgfutils/pgfutils.h" + #include #include @@ -434,12 +436,16 @@ bool cImage::loadPGF(const QString &fileName) return(false); } - QImage img; QByteArray data(file.size(), '\x00'); QDataStream stream(&file); stream.readRawData(data.data(), data.size()); - if (!PGFUtils::readPGFImageData(data, img)) + return(loadPGF(data)); +} + +bool cImage::loadPGF(const QByteArray& data) +{ + if (!Digikam::PGFUtils::readPGFImageData(data, *this)) { qDebug() << "loadPGFScaled failed..."; return(false); diff --git a/cimage.h b/cimage.h index 5c36068..d13f46a 100644 --- a/cimage.h +++ b/cimage.h @@ -122,6 +122,15 @@ public: */ bool load(const QString &fileName, const char *format = nullptr); + /*! + \brief + + \fn loadPGF + \param data + \return bool + */ + bool loadPGF(const QByteArray& data); + /*! \brief diff --git a/cimages.cpp b/cimages.cpp index 3217a44..e3ab816 100644 --- a/cimages.cpp +++ b/cimages.cpp @@ -1,8 +1,12 @@ #include "cimages.h" #include "calbums.h" +#include #include +#define THUMBNAIL_WIDTH 160 +#define THUMBNAIL_HEIGHT 120 + cImages::cImages(const qint32& id, QObject *parent) : QObject(parent), @@ -15,7 +19,8 @@ cImages::cImages(const qint32& id, QObject *parent) : m_fileSize(0), m_uniqueHash(""), m_manualOrder(0), - m_item(nullptr) + m_item(nullptr), + m_thumbnail(nullptr) { } @@ -31,7 +36,8 @@ cImages::cImages(const qint32& id, cAlbums* albums, const QString& name, const q m_uniqueHash(uniqueHash), m_manualOrder(manualOrder), m_dbThumbnail(dbThumbnail), - m_item(nullptr) + m_item(nullptr), + m_thumbnail(nullptr) { } @@ -150,6 +156,78 @@ void cImages::loadThumbnail() qDebug() << "cImages: Thumbnail Loading failed."; return; } + + if(m_thumbnail) + delete m_thumbnail; + + cImage thumb; + + if(query.first()) + { + if(!query.value("data").isNull()) + thumb.loadPGF(query.value("data").toByteArray()); + + if(thumb.isNull()) + { + m_thumbnail = new cImage(THUMBNAIL_WIDTH, THUMBNAIL_HEIGHT, QImage::Format_RGB16); + + QPainter painter(m_thumbnail); + painter.setPen(QPen(Qt::black)); + painter.setBrush(QBrush(Qt::white)); + painter.drawRect(0, 0, THUMBNAIL_WIDTH-1, THUMBNAIL_HEIGHT-1); + painter.drawLine(0, 0, THUMBNAIL_WIDTH-1, THUMBNAIL_HEIGHT-1); + painter.drawLine(0, THUMBNAIL_HEIGHT-1, THUMBNAIL_WIDTH-1, 0); + painter.end(); + } + else if(thumb.width() != THUMBNAIL_WIDTH || thumb.height() != THUMBNAIL_HEIGHT) + { + m_thumbnail = new cImage(THUMBNAIL_WIDTH, THUMBNAIL_HEIGHT, thumb.format()); + m_thumbnail->fill(Qt::black); + + qreal sw = THUMBNAIL_WIDTH/(qreal)thumb.width(); + qreal sh = THUMBNAIL_HEIGHT/(qreal)thumb.height(); + + qreal w; + qreal h; + + if(sw < sh) + { + w = (qint32)((qreal)thumb.width()*sw); + h = (qint32)((qreal)thumb.height()*sw); + } + else + { + w = (qint32)((qreal)thumb.width()*sh); + h = (qint32)((qreal)thumb.height()*sh); + } + + QPainter painter(m_thumbnail); + painter.drawImage((THUMBNAIL_WIDTH-w)/2, (THUMBNAIL_HEIGHT-h)/2, thumb.scaled(w, h, Qt::KeepAspectRatio)); + painter.end(); + } + else + { + m_thumbnail = new cImage; + *m_thumbnail = thumb; + } + } + else + { + m_thumbnail = new cImage(THUMBNAIL_WIDTH, THUMBNAIL_HEIGHT, QImage::Format_RGB16); + + QPainter painter(m_thumbnail); + painter.setPen(QPen(Qt::black)); + painter.setBrush(QBrush(Qt::white)); + painter.drawRect(0, 0, THUMBNAIL_WIDTH-1, THUMBNAIL_HEIGHT-1); + painter.drawLine(0, 0, THUMBNAIL_WIDTH-1, THUMBNAIL_HEIGHT-1); + painter.drawLine(0, THUMBNAIL_HEIGHT-1, THUMBNAIL_WIDTH-1, 0); + painter.end(); + } +} + +QImage* cImages::thumbnail() +{ + return(m_thumbnail); } cImagesList::cImagesList(QSqlDatabase* dbDigikam, QSqlDatabase *dbThumbnail, cAlbumsList* albumsList, QObject* parent) : diff --git a/cimages.h b/cimages.h index 468f715..08bed7e 100644 --- a/cimages.h +++ b/cimages.h @@ -2,6 +2,8 @@ #define CIMAGES_H +#include "cimage.h" + #include #include #include @@ -54,6 +56,7 @@ public: QStandardItem* item(); void loadThumbnail(); + QImage* thumbnail(); private: qint32 m_id; @@ -67,6 +70,7 @@ private: qint32 m_manualOrder; QSqlDatabase* m_dbThumbnail; QStandardItem* m_item; + cImage* m_thumbnail; signals: diff --git a/cmainwindow.cpp b/cmainwindow.cpp index f159c43..a4b01d0 100644 --- a/cmainwindow.cpp +++ b/cmainwindow.cpp @@ -6,10 +6,18 @@ #include #include +#include "cimage.h" + cMainWindow::cMainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::cMainWindow), + m_progressBar(nullptr), + m_listToolBar(nullptr), + m_refreshAction(nullptr), + m_actionToolBar(nullptr), + m_exportAction(nullptr), + m_stopAction(nullptr), m_albumRootsList(nullptr), m_folderViewModel(nullptr), m_folderSortFilterProxyModel(nullptr), @@ -18,6 +26,7 @@ cMainWindow::cMainWindow(QWidget *parent) : m_loading(false) { initUI(); + createActions(); loadData(); initSignals(); } @@ -62,8 +71,9 @@ void cMainWindow::initUI() { ui->setupUi(this); + QIcon::setThemeName("TangoMFK"); + m_folderViewModel = new QStandardItemModel; -// ui->m_folderView->setModel(m_folderViewModel); m_folderSortFilterProxyModel = new cFolderSortFilterProxyModel(this); ui->m_folderView->setModel(m_folderSortFilterProxyModel); m_folderSortFilterProxyModel->setSourceModel(m_folderViewModel); @@ -93,24 +103,74 @@ void cMainWindow::initUI() qint32 iWidth3 = settings.value("main/splitter3", QVariant::fromValue(-1)).toInt(); ui->m_splitter->setSizes(QList() << iWidth1 << iWidth2 << iWidth3); + + m_progressBar = new QProgressBar(this); + m_progressBar->setVisible(false); + ui->m_statusBar->addPermanentWidget(m_progressBar); +} + +void cMainWindow::createActions() +{ + setToolButtonStyle(Qt::ToolButtonFollowStyle); + + createMenuActions(); + createContextActions(); +} + +void cMainWindow::createMenuActions() +{ + m_listToolBar = addToolBar("list"); + + const QIcon refreshIcon = QIcon::fromTheme("view-refresh"); + m_refreshAction = m_listToolBar->addAction(refreshIcon, tr("&Refresh"), this, &cMainWindow::onRefreshList); + m_refreshAction->setShortcut(Qt::Key_F5); + + + m_actionToolBar = addToolBar("action"); + + const QIcon startIcon = QIcon::fromTheme("media-playback-start"); + m_exportAction = m_actionToolBar->addAction(startIcon, tr("&Export"), this, &cMainWindow::onExport); + m_exportAction->setShortcut(Qt::CTRL | Qt::Key_R); + + const QIcon stopIcon = QIcon::fromTheme("process-stop"); + m_stopAction = m_actionToolBar->addAction(stopIcon, tr("&Stop"), this, &cMainWindow::onStop); +} + +void cMainWindow::createContextActions() +{ } void cMainWindow::loadData() { - m_dbDigikam = QSqlDatabase::addDatabase("QSQLITE", "digikam4"); - m_dbDigikam.setDatabaseName("C:\\Temp\\__DIGIKAM__\\digikam4.db"); - if(!m_dbDigikam.open()) + m_thumbnailViewModel->clear(); + m_folderViewModel->clear(); + + if(m_albumRootsList) + delete m_albumRootsList; + + if(m_albumsList) + delete m_albumsList; + + if(!m_dbDigikam.isOpen()) { - qDebug() << "Digikam: DB Open failed. " << m_dbDigikam.lastError().text(); - return; + m_dbDigikam = QSqlDatabase::addDatabase("QSQLITE", "digikam4"); + m_dbDigikam.setDatabaseName("C:\\Temp\\__DIGIKAM__\\digikam4.db"); + if(!m_dbDigikam.open()) + { + qDebug() << "Digikam: DB Open failed. " << m_dbDigikam.lastError().text(); + return; + } } - m_dbThumbnail = QSqlDatabase::addDatabase("QSQLITE", "thumbnails-digikam"); - m_dbThumbnail.setDatabaseName("C:\\Temp\\__DIGIKAM__\\thumbnails-digikam.db"); - if(!m_dbThumbnail.open()) + if(!m_dbThumbnail.isOpen()) { - qDebug() << "Thumbnail: DB Open failed. " << m_dbDigikam.lastError().text(); - return; + m_dbThumbnail = QSqlDatabase::addDatabase("QSQLITE", "thumbnails-digikam"); + m_dbThumbnail.setDatabaseName("C:\\Temp\\__DIGIKAM__\\thumbnails-digikam.db"); + if(!m_dbThumbnail.open()) + { + qDebug() << "Thumbnail: DB Open failed. " << m_dbDigikam.lastError().text(); + return; + } } m_albumRootsList = new cAlbumRootsList(&m_dbDigikam, &m_dbThumbnail, this); @@ -235,11 +295,46 @@ void cMainWindow::onFolderViewItemChanged(QStandardItem* item) Qt::CheckState state = item->checkState(); QModelIndex parent = item->index(); + cAlbums* albums = item->data().value(); + cImagesList* imagesList = nullptr; + + if(albums) + imagesList = albums->imagesList(); + + if(imagesList) + { + for(int y = 0;y < imagesList->count();y++) + { + cImages* images = imagesList->at(y); + QStandardItem* imagesItem = images->item(); + if(imagesItem) + imagesItem->setCheckState(state); + } + } + for(int x = 0;x < m_folderViewModel->rowCount(parent);x++) { QStandardItem* curItem = m_folderViewModel->itemFromIndex(m_folderViewModel->index(x, 0, parent)); - if(curItem) - curItem->setCheckState(state); + if(!curItem) + continue; + + curItem->setCheckState(state); + + albums = curItem->data().value(); + imagesList = albums->imagesList(); + + if(!imagesList) + continue; + if(!imagesList->count()) + continue; + + for(int y = 0;y < imagesList->count();y++) + { + cImages* images = imagesList->at(y); + QStandardItem* imagesItem = images->item(); + if(imagesItem) + imagesItem->setCheckState(state); + } } } @@ -258,8 +353,8 @@ void cMainWindow::onFolderSelected(const QItemSelection& /*selection*/, const QI return; cAlbums* albums = m_folderSortFilterProxyModel->data(index, Qt::UserRole+1).value(); - - albums->loadImages(); + Qt::CheckState state = albums->item()->checkState(); + bool loaded = albums->loadImages(); cImagesList* imagesList = albums->imagesList(); if(!imagesList) return; @@ -270,8 +365,27 @@ void cMainWindow::onFolderSelected(const QItemSelection& /*selection*/, const QI if(!images) continue; - QStandardItem* item = new QStandardItem(images->name()); + QIcon icon = QIcon(QPixmap::fromImage(*images->thumbnail())); + QStandardItem* item = new QStandardItem(icon, images->name()); + item->setTextAlignment(Qt::AlignCenter); item->setData(QVariant::fromValue(images)); + item->setCheckable(true); + if(loaded) + item->setCheckState(state); + images->setItem(item); m_thumbnailViewModel->appendRow(item); } } + +void cMainWindow::onRefreshList() +{ + loadData(); +} + +void cMainWindow::onExport() +{ +} + +void cMainWindow::onStop() +{ +} diff --git a/cmainwindow.h b/cmainwindow.h index c6eda86..089c8b5 100644 --- a/cmainwindow.h +++ b/cmainwindow.h @@ -13,6 +13,9 @@ #include #include +#include +#include + QT_BEGIN_NAMESPACE namespace Ui { class cMainWindow; } @@ -28,6 +31,20 @@ public: private: Ui::cMainWindow* ui; + + QProgressBar* m_progressBar; + +// QToolBar* m_fileToolBar; +// QAction* m_openFileAction; +// QAction* m_openDirectoryAction; + + QToolBar* m_listToolBar; + QAction* m_refreshAction; + + QToolBar* m_actionToolBar; + QAction* m_exportAction; + QAction* m_stopAction; + QSqlDatabase m_dbDigikam; QSqlDatabase m_dbThumbnail; cAlbumRootsList* m_albumRootsList; @@ -42,6 +59,9 @@ private: bool m_loading; void initUI(); + void createActions(); + void createMenuActions(); + void createContextActions(); void loadData(); void displayData(); void initSignals(); @@ -52,6 +72,9 @@ protected: void closeEvent(QCloseEvent* event); private slots: + void onRefreshList(); + void onExport(); + void onStop(); void onFolderViewItemChanged(QStandardItem* item); void onFolderSelected(const QItemSelection& selection, const QItemSelection& previous); }; diff --git a/cmainwindow.ui b/cmainwindow.ui index 8cbbc73..d650b30 100644 --- a/cmainwindow.ui +++ b/cmainwindow.ui @@ -33,24 +33,46 @@ true - + + + QAbstractItemView::NoEditTriggers + + + + 160 + 120 + + + + QListView::Adjust + + + + 180 + 180 + + + + QListView::IconMode + + - + 0 0 1280 - 21 + 22 - + diff --git a/exportDigikam.pro b/exportDigikam.pro index 007b369..22fba87 100644 --- a/exportDigikam.pro +++ b/exportDigikam.pro @@ -29,6 +29,8 @@ unix { LIBS += -lraw -lexiv2 } +INCLUDEPATH += ./pgfutils/libpgf + QMAKE_CXXFLAGS += -DLIBRAW_NODLL -DLIBRAW_NOTHREADS # You can make your code fail to compile if it uses deprecated APIs. @@ -82,3 +84,6 @@ else: unix:!android: target.path = /opt/$${TARGET}/bin DISTFILES += \ pgfutils/libpgf/README + +RESOURCES += \ + exportDigikam.qrc diff --git a/exportDigikam.qrc b/exportDigikam.qrc new file mode 100644 index 0000000..1620458 --- /dev/null +++ b/exportDigikam.qrc @@ -0,0 +1,661 @@ + + + images/splash.png + + + images/tango/16x16/actions/address-book-new.png + images/tango/16x16/actions/appointment-new.png + images/tango/16x16/actions/bookmark-new.png + images/tango/16x16/actions/contact-new.png + images/tango/16x16/actions/document-new.png + images/tango/16x16/actions/document-open.png + images/tango/16x16/actions/document-print-preview.png + images/tango/16x16/actions/document-print.png + images/tango/16x16/actions/document-pdf.png + images/tango/16x16/actions/document-properties.png + images/tango/16x16/actions/document-revert.png + images/tango/16x16/actions/document-save-as.png + images/tango/16x16/actions/document-save.png + images/tango/16x16/actions/edit-clear.png + images/tango/16x16/actions/edit-copy.png + images/tango/16x16/actions/edit-cut.png + images/tango/16x16/actions/edit-delete.png + images/tango/16x16/actions/edit-find-replace.png + images/tango/16x16/actions/edit-find.png + images/tango/16x16/actions/edit-paste.png + images/tango/16x16/actions/edit-redo.png + images/tango/16x16/actions/edit-select-all.png + images/tango/16x16/actions/edit-undo.png + images/tango/16x16/actions/folder-new.png + images/tango/16x16/actions/format-indent-less.png + images/tango/16x16/actions/format-indent-more.png + images/tango/16x16/actions/format-justify-center.png + images/tango/16x16/actions/format-justify-fill.png + images/tango/16x16/actions/format-justify-left.png + images/tango/16x16/actions/format-justify-right.png + images/tango/16x16/actions/format-text-bold.png + images/tango/16x16/actions/format-text-italic.png + images/tango/16x16/actions/format-text-strikethrough.png + images/tango/16x16/actions/format-text-underline.png + images/tango/16x16/actions/go-bottom.png + images/tango/16x16/actions/go-down.png + images/tango/16x16/actions/go-first.png + images/tango/16x16/actions/go-home.png + images/tango/16x16/actions/go-jump.png + images/tango/16x16/actions/go-last.png + images/tango/16x16/actions/go-next.png + images/tango/16x16/actions/go-previous.png + images/tango/16x16/actions/go-top.png + images/tango/16x16/actions/go-up.png + images/tango/16x16/actions/list-add.png + images/tango/16x16/actions/list-remove.png + images/tango/16x16/actions/mail-forward.png + images/tango/16x16/actions/mail-mark-junk.png + images/tango/16x16/actions/mail-mark-not-junk.png + images/tango/16x16/actions/mail-message-new.png + images/tango/16x16/actions/mail-reply-all.png + images/tango/16x16/actions/mail-reply-sender.png + images/tango/16x16/actions/mail-send-receive.png + images/tango/16x16/actions/media-eject.png + images/tango/16x16/actions/media-playback-pause.png + images/tango/16x16/actions/media-playback-start.png + images/tango/16x16/actions/media-playback-stop.png + images/tango/16x16/actions/media-record.png + images/tango/16x16/actions/media-seek-backward.png + images/tango/16x16/actions/media-seek-forward.png + images/tango/16x16/actions/media-skip-backward.png + images/tango/16x16/actions/media-skip-forward.png + images/tango/16x16/actions/process-stop.png + images/tango/16x16/actions/system-lock-screen.png + images/tango/16x16/actions/system-log-out.png + images/tango/16x16/actions/system-search.png + images/tango/16x16/actions/system-shutdown.png + images/tango/16x16/actions/tab-new.png + images/tango/16x16/actions/view-fullscreen.png + images/tango/16x16/actions/view-refresh.png + images/tango/16x16/actions/window-new.png + images/tango/16x16/animations/process-working.png + images/tango/16x16/apps/accessories-calculator.png + images/tango/16x16/apps/accessories-character-map.png + images/tango/16x16/apps/accessories-text-editor.png + images/tango/16x16/apps/help-browser.png + images/tango/16x16/apps/internet-group-chat.png + images/tango/16x16/apps/internet-mail.png + images/tango/16x16/apps/internet-news-reader.png + images/tango/16x16/apps/internet-web-browser.png + images/tango/16x16/apps/office-calendar.png + images/tango/16x16/apps/preferences-desktop-accessibility.png + images/tango/16x16/apps/preferences-desktop-assistive-technology.png + images/tango/16x16/apps/preferences-desktop-font.png + images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png + images/tango/16x16/apps/preferences-desktop-locale.png + images/tango/16x16/apps/preferences-desktop-multimedia.png + images/tango/16x16/apps/preferences-desktop-remote-desktop.png + images/tango/16x16/apps/preferences-desktop-screensaver.png + images/tango/16x16/apps/preferences-desktop-theme.png + images/tango/16x16/apps/preferences-desktop-wallpaper.png + images/tango/16x16/apps/preferences-system-network-proxy.png + images/tango/16x16/apps/preferences-system-session.png + images/tango/16x16/apps/preferences-system-windows.png + images/tango/16x16/apps/system-file-manager.png + images/tango/16x16/apps/system-installer.png + images/tango/16x16/apps/system-software-update.png + images/tango/16x16/apps/system-users.png + images/tango/16x16/apps/utilities-system-monitor.png + images/tango/16x16/apps/utilities-terminal.png + images/tango/16x16/categories/applications-accessories.png + images/tango/16x16/categories/applications-development.png + images/tango/16x16/categories/applications-games.png + images/tango/16x16/categories/applications-graphics.png + images/tango/16x16/categories/applications-internet.png + images/tango/16x16/categories/applications-multimedia.png + images/tango/16x16/categories/applications-office.png + images/tango/16x16/categories/applications-other.png + images/tango/16x16/categories/applications-system.png + images/tango/16x16/categories/preferences-desktop-peripherals.png + images/tango/16x16/categories/preferences-desktop.png + images/tango/16x16/categories/preferences-system.png + images/tango/16x16/devices/audio-card.png + images/tango/16x16/devices/audio-input-microphone.png + images/tango/16x16/devices/battery.png + images/tango/16x16/devices/camera-photo.png + images/tango/16x16/devices/camera-video.png + images/tango/16x16/devices/computer.png + images/tango/16x16/devices/drive-harddisk.png + images/tango/16x16/devices/drive-optical.png + images/tango/16x16/devices/drive-removable-media.png + images/tango/16x16/devices/input-gaming.png + images/tango/16x16/devices/input-keyboard.png + images/tango/16x16/devices/input-mouse.png + images/tango/16x16/devices/media-flash.png + images/tango/16x16/devices/media-floppy.png + images/tango/16x16/devices/media-optical.png + images/tango/16x16/devices/multimedia-player.png + images/tango/16x16/devices/network-wired.png + images/tango/16x16/devices/network-wireless.png + images/tango/16x16/devices/printer.png + images/tango/16x16/devices/video-display.png + images/tango/16x16/emblems/emblem-favorite.png + images/tango/16x16/emblems/emblem-important.png + images/tango/16x16/emblems/emblem-photos.png + images/tango/16x16/emblems/emblem-readonly.png + images/tango/16x16/emblems/emblem-symbolic-link.png + images/tango/16x16/emblems/emblem-system.png + images/tango/16x16/emblems/emblem-unreadable.png + images/tango/16x16/emotes/face-angel.png + images/tango/16x16/emotes/face-crying.png + images/tango/16x16/emotes/face-devilish.png + images/tango/16x16/emotes/face-glasses.png + images/tango/16x16/emotes/face-grin.png + images/tango/16x16/emotes/face-kiss.png + images/tango/16x16/emotes/face-monkey.png + images/tango/16x16/emotes/face-plain.png + images/tango/16x16/emotes/face-sad.png + images/tango/16x16/emotes/face-smile-big.png + images/tango/16x16/emotes/face-smile.png + images/tango/16x16/emotes/face-surprise.png + images/tango/16x16/emotes/face-wink.png + images/tango/16x16/mimetypes/application-certificate.png + images/tango/16x16/mimetypes/application-x-executable.png + images/tango/16x16/mimetypes/audio-x-generic.png + images/tango/16x16/mimetypes/font-x-generic.png + images/tango/16x16/mimetypes/image-x-generic.png + images/tango/16x16/mimetypes/package-x-generic.png + images/tango/16x16/mimetypes/text-html.png + images/tango/16x16/mimetypes/text-x-generic-template.png + images/tango/16x16/mimetypes/text-x-generic.png + images/tango/16x16/mimetypes/text-x-script.png + images/tango/16x16/mimetypes/video-x-generic.png + images/tango/16x16/mimetypes/x-office-address-book.png + images/tango/16x16/mimetypes/x-office-calendar.png + images/tango/16x16/mimetypes/x-office-document-template.png + images/tango/16x16/mimetypes/x-office-document.png + images/tango/16x16/mimetypes/x-office-drawing-template.png + images/tango/16x16/mimetypes/x-office-drawing.png + images/tango/16x16/mimetypes/x-office-presentation-template.png + images/tango/16x16/mimetypes/x-office-presentation.png + images/tango/16x16/mimetypes/x-office-spreadsheet-template.png + images/tango/16x16/mimetypes/x-office-spreadsheet.png + images/tango/16x16/places/folder-remote.png + images/tango/16x16/places/folder-saved-search.png + images/tango/16x16/places/folder.png + images/tango/16x16/places/network-server.png + images/tango/16x16/places/network-workgroup.png + images/tango/16x16/places/start-here.png + images/tango/16x16/places/user-desktop.png + images/tango/16x16/places/user-home.png + images/tango/16x16/places/user-trash.png + images/tango/16x16/status/audio-volume-high.png + images/tango/16x16/status/audio-volume-low.png + images/tango/16x16/status/audio-volume-medium.png + images/tango/16x16/status/audio-volume-muted.png + images/tango/16x16/status/battery-caution.png + images/tango/16x16/status/dialog-error.png + images/tango/16x16/status/dialog-information.png + images/tango/16x16/status/dialog-warning.png + images/tango/16x16/status/folder-drag-accept.png + images/tango/16x16/status/folder-open.png + images/tango/16x16/status/folder-visiting.png + images/tango/16x16/status/image-loading.png + images/tango/16x16/status/image-missing.png + images/tango/16x16/status/mail-attachment.png + images/tango/16x16/status/network-error.png + images/tango/16x16/status/network-idle.png + images/tango/16x16/status/network-offline.png + images/tango/16x16/status/network-receive.png + images/tango/16x16/status/network-transmit-receive.png + images/tango/16x16/status/network-transmit.png + images/tango/16x16/status/network-wireless-encrypted.png + images/tango/16x16/status/printer-error.png + images/tango/16x16/status/software-update-available.png + images/tango/16x16/status/software-update-urgent.png + images/tango/16x16/status/user-trash-full.png + images/tango/16x16/status/weather-clear-night.png + images/tango/16x16/status/weather-clear.png + images/tango/16x16/status/weather-few-clouds-night.png + images/tango/16x16/status/weather-few-clouds.png + images/tango/16x16/status/weather-overcast.png + images/tango/16x16/status/weather-severe-alert.png + images/tango/16x16/status/weather-showers-scattered.png + images/tango/16x16/status/weather-showers.png + images/tango/16x16/status/weather-snow.png + images/tango/16x16/status/weather-storm.png + images/tango/22x22/actions/address-book-new.png + images/tango/22x22/actions/appointment-new.png + images/tango/22x22/actions/bookmark-new.png + images/tango/22x22/actions/contact-new.png + images/tango/22x22/actions/document-new.png + images/tango/22x22/actions/document-open.png + images/tango/22x22/actions/document-print-preview.png + images/tango/22x22/actions/document-print.png + images/tango/22x22/actions/document-pdf.png + images/tango/22x22/actions/document-properties.png + images/tango/22x22/actions/document-revert.png + images/tango/22x22/actions/document-save-as.png + images/tango/22x22/actions/document-save.png + images/tango/22x22/actions/edit-clear.png + images/tango/22x22/actions/edit-copy.png + images/tango/22x22/actions/edit-cut.png + images/tango/22x22/actions/edit-delete.png + images/tango/22x22/actions/edit-find-replace.png + images/tango/22x22/actions/edit-find.png + images/tango/22x22/actions/edit-paste.png + images/tango/22x22/actions/edit-redo.png + images/tango/22x22/actions/edit-select-all.png + images/tango/22x22/actions/edit-undo.png + images/tango/22x22/actions/folder-new.png + images/tango/22x22/actions/format-indent-less.png + images/tango/22x22/actions/format-indent-more.png + images/tango/22x22/actions/format-justify-center.png + images/tango/22x22/actions/format-justify-fill.png + images/tango/22x22/actions/format-justify-left.png + images/tango/22x22/actions/format-justify-right.png + images/tango/22x22/actions/format-text-bold.png + images/tango/22x22/actions/format-text-italic.png + images/tango/22x22/actions/format-text-strikethrough.png + images/tango/22x22/actions/format-text-underline.png + images/tango/22x22/actions/go-bottom.png + images/tango/22x22/actions/go-down.png + images/tango/22x22/actions/go-first.png + images/tango/22x22/actions/go-home.png + images/tango/22x22/actions/go-jump.png + images/tango/22x22/actions/go-last.png + images/tango/22x22/actions/go-next.png + images/tango/22x22/actions/go-previous.png + images/tango/22x22/actions/go-top.png + images/tango/22x22/actions/go-up.png + images/tango/22x22/actions/list-add.png + images/tango/22x22/actions/list-remove.png + images/tango/22x22/actions/mail-forward.png + images/tango/22x22/actions/mail-mark-junk.png + images/tango/22x22/actions/mail-mark-not-junk.png + images/tango/22x22/actions/mail-message-new.png + images/tango/22x22/actions/mail-reply-all.png + images/tango/22x22/actions/mail-reply-sender.png + images/tango/22x22/actions/mail-send-receive.png + images/tango/22x22/actions/media-eject.png + images/tango/22x22/actions/media-playback-pause.png + images/tango/22x22/actions/media-playback-start.png + images/tango/22x22/actions/media-playback-stop.png + images/tango/22x22/actions/media-record.png + images/tango/22x22/actions/media-seek-backward.png + images/tango/22x22/actions/media-seek-forward.png + images/tango/22x22/actions/media-skip-backward.png + images/tango/22x22/actions/media-skip-forward.png + images/tango/22x22/actions/process-stop.png + images/tango/22x22/actions/system-lock-screen.png + images/tango/22x22/actions/system-log-out.png + images/tango/22x22/actions/system-search.png + images/tango/22x22/actions/system-shutdown.png + images/tango/22x22/actions/tab-new.png + images/tango/22x22/actions/view-fullscreen.png + images/tango/22x22/actions/view-refresh.png + images/tango/22x22/actions/window-new.png + images/tango/22x22/animations/process-working.png + images/tango/22x22/apps/accessories-calculator.png + images/tango/22x22/apps/accessories-character-map.png + images/tango/22x22/apps/accessories-text-editor.png + images/tango/22x22/apps/help-browser.png + images/tango/22x22/apps/internet-group-chat.png + images/tango/22x22/apps/internet-mail.png + images/tango/22x22/apps/internet-news-reader.png + images/tango/22x22/apps/internet-web-browser.png + images/tango/22x22/apps/office-calendar.png + images/tango/22x22/apps/preferences-desktop-accessibility.png + images/tango/22x22/apps/preferences-desktop-assistive-technology.png + images/tango/22x22/apps/preferences-desktop-font.png + images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png + images/tango/22x22/apps/preferences-desktop-locale.png + images/tango/22x22/apps/preferences-desktop-multimedia.png + images/tango/22x22/apps/preferences-desktop-remote-desktop.png + images/tango/22x22/apps/preferences-desktop-screensaver.png + images/tango/22x22/apps/preferences-desktop-theme.png + images/tango/22x22/apps/preferences-desktop-wallpaper.png + images/tango/22x22/apps/preferences-system-network-proxy.png + images/tango/22x22/apps/preferences-system-session.png + images/tango/22x22/apps/preferences-system-windows.png + images/tango/22x22/apps/system-file-manager.png + images/tango/22x22/apps/system-installer.png + images/tango/22x22/apps/system-software-update.png + images/tango/22x22/apps/system-users.png + images/tango/22x22/apps/utilities-system-monitor.png + images/tango/22x22/apps/utilities-terminal.png + images/tango/22x22/categories/applications-accessories.png + images/tango/22x22/categories/applications-development.png + images/tango/22x22/categories/applications-games.png + images/tango/22x22/categories/applications-graphics.png + images/tango/22x22/categories/applications-internet.png + images/tango/22x22/categories/applications-multimedia.png + images/tango/22x22/categories/applications-office.png + images/tango/22x22/categories/applications-other.png + images/tango/22x22/categories/applications-system.png + images/tango/22x22/categories/preferences-desktop-peripherals.png + images/tango/22x22/categories/preferences-desktop.png + images/tango/22x22/categories/preferences-system.png + images/tango/22x22/devices/audio-card.png + images/tango/22x22/devices/audio-input-microphone.png + images/tango/22x22/devices/battery.png + images/tango/22x22/devices/camera-photo.png + images/tango/22x22/devices/camera-video.png + images/tango/22x22/devices/computer.png + images/tango/22x22/devices/drive-harddisk.png + images/tango/22x22/devices/drive-optical.png + images/tango/22x22/devices/drive-removable-media.png + images/tango/22x22/devices/input-gaming.png + images/tango/22x22/devices/input-keyboard.png + images/tango/22x22/devices/input-mouse.png + images/tango/22x22/devices/media-flash.png + images/tango/22x22/devices/media-floppy.png + images/tango/22x22/devices/media-optical.png + images/tango/22x22/devices/multimedia-player.png + images/tango/22x22/devices/network-wired.png + images/tango/22x22/devices/network-wireless.png + images/tango/22x22/devices/printer.png + images/tango/22x22/devices/video-display.png + images/tango/22x22/emblems/emblem-favorite.png + images/tango/22x22/emblems/emblem-important.png + images/tango/22x22/emblems/emblem-photos.png + images/tango/22x22/emblems/emblem-readonly.png + images/tango/22x22/emblems/emblem-symbolic-link.png + images/tango/22x22/emblems/emblem-system.png + images/tango/22x22/emblems/emblem-unreadable.png + images/tango/22x22/emotes/face-angel.png + images/tango/22x22/emotes/face-crying.png + images/tango/22x22/emotes/face-devilish.png + images/tango/22x22/emotes/face-glasses.png + images/tango/22x22/emotes/face-grin.png + images/tango/22x22/emotes/face-kiss.png + images/tango/22x22/emotes/face-monkey.png + images/tango/22x22/emotes/face-plain.png + images/tango/22x22/emotes/face-sad.png + images/tango/22x22/emotes/face-smile-big.png + images/tango/22x22/emotes/face-smile.png + images/tango/22x22/emotes/face-surprise.png + images/tango/22x22/emotes/face-wink.png + images/tango/22x22/mimetypes/application-certificate.png + images/tango/22x22/mimetypes/application-x-executable.png + images/tango/22x22/mimetypes/audio-x-generic.png + images/tango/22x22/mimetypes/font-x-generic.png + images/tango/22x22/mimetypes/image-x-generic.png + images/tango/22x22/mimetypes/package-x-generic.png + images/tango/22x22/mimetypes/text-html.png + images/tango/22x22/mimetypes/text-x-generic-template.png + images/tango/22x22/mimetypes/text-x-generic.png + images/tango/22x22/mimetypes/text-x-script.png + images/tango/22x22/mimetypes/video-x-generic.png + images/tango/22x22/mimetypes/x-office-address-book.png + images/tango/22x22/mimetypes/x-office-calendar.png + images/tango/22x22/mimetypes/x-office-document-template.png + images/tango/22x22/mimetypes/x-office-document.png + images/tango/22x22/mimetypes/x-office-drawing-template.png + images/tango/22x22/mimetypes/x-office-drawing.png + images/tango/22x22/mimetypes/x-office-presentation-template.png + images/tango/22x22/mimetypes/x-office-presentation.png + images/tango/22x22/mimetypes/x-office-spreadsheet-template.png + images/tango/22x22/mimetypes/x-office-spreadsheet.png + images/tango/22x22/places/folder-remote.png + images/tango/22x22/places/folder-saved-search.png + images/tango/22x22/places/folder.png + images/tango/22x22/places/network-server.png + images/tango/22x22/places/network-workgroup.png + images/tango/22x22/places/start-here.png + images/tango/22x22/places/user-desktop.png + images/tango/22x22/places/user-home.png + images/tango/22x22/places/user-trash.png + images/tango/22x22/status/audio-volume-high.png + images/tango/22x22/status/audio-volume-low.png + images/tango/22x22/status/audio-volume-medium.png + images/tango/22x22/status/audio-volume-muted.png + images/tango/22x22/status/battery-caution.png + images/tango/22x22/status/dialog-error.png + images/tango/22x22/status/dialog-information.png + images/tango/22x22/status/dialog-warning.png + images/tango/22x22/status/folder-drag-accept.png + images/tango/22x22/status/folder-open.png + images/tango/22x22/status/folder-visiting.png + images/tango/22x22/status/image-loading.png + images/tango/22x22/status/image-missing.png + images/tango/22x22/status/mail-attachment.png + images/tango/22x22/status/network-error.png + images/tango/22x22/status/network-idle.png + images/tango/22x22/status/network-offline.png + images/tango/22x22/status/network-receive.png + images/tango/22x22/status/network-transmit-receive.png + images/tango/22x22/status/network-transmit.png + images/tango/22x22/status/network-wireless-encrypted.png + images/tango/22x22/status/printer-error.png + images/tango/22x22/status/software-update-available.png + images/tango/22x22/status/software-update-urgent.png + images/tango/22x22/status/user-trash-full.png + images/tango/22x22/status/weather-clear-night.png + images/tango/22x22/status/weather-clear.png + images/tango/22x22/status/weather-few-clouds-night.png + images/tango/22x22/status/weather-few-clouds.png + images/tango/22x22/status/weather-overcast.png + images/tango/22x22/status/weather-severe-alert.png + images/tango/22x22/status/weather-showers-scattered.png + images/tango/22x22/status/weather-showers.png + images/tango/22x22/status/weather-snow.png + images/tango/22x22/status/weather-storm.png + images/tango/32x32/actions/address-book-new.png + images/tango/32x32/actions/appointment-new.png + images/tango/32x32/actions/bookmark-new.png + images/tango/32x32/actions/contact-new.png + images/tango/32x32/actions/document-new.png + images/tango/32x32/actions/document-open.png + images/tango/32x32/actions/document-print-preview.png + images/tango/32x32/actions/document-print.png + images/tango/32x32/actions/document-pdf.png + images/tango/32x32/actions/document-properties.png + images/tango/32x32/actions/document-revert.png + images/tango/32x32/actions/document-save-as.png + images/tango/32x32/actions/document-save.png + images/tango/32x32/actions/edit-clear.png + images/tango/32x32/actions/edit-copy.png + images/tango/32x32/actions/edit-cut.png + images/tango/32x32/actions/edit-delete.png + images/tango/32x32/actions/edit-find-replace.png + images/tango/32x32/actions/edit-find.png + images/tango/32x32/actions/edit-paste.png + images/tango/32x32/actions/edit-redo.png + images/tango/32x32/actions/edit-select-all.png + images/tango/32x32/actions/edit-undo.png + images/tango/32x32/actions/folder-new.png + images/tango/32x32/actions/format-indent-less.png + images/tango/32x32/actions/format-indent-more.png + images/tango/32x32/actions/format-justify-center.png + images/tango/32x32/actions/format-justify-fill.png + images/tango/32x32/actions/format-justify-left.png + images/tango/32x32/actions/format-justify-right.png + images/tango/32x32/actions/format-text-bold.png + images/tango/32x32/actions/format-text-italic.png + images/tango/32x32/actions/format-text-strikethrough.png + images/tango/32x32/actions/format-text-underline.png + images/tango/32x32/actions/go-bottom.png + images/tango/32x32/actions/go-down.png + images/tango/32x32/actions/go-first.png + images/tango/32x32/actions/go-home.png + images/tango/32x32/actions/go-jump.png + images/tango/32x32/actions/go-last.png + images/tango/32x32/actions/go-next.png + images/tango/32x32/actions/go-previous.png + images/tango/32x32/actions/go-top.png + images/tango/32x32/actions/go-up.png + images/tango/32x32/actions/list-add.png + images/tango/32x32/actions/list-remove.png + images/tango/32x32/actions/mail-forward.png + images/tango/32x32/actions/mail-mark-junk.png + images/tango/32x32/actions/mail-mark-not-junk.png + images/tango/32x32/actions/mail-message-new.png + images/tango/32x32/actions/mail-reply-all.png + images/tango/32x32/actions/mail-reply-sender.png + images/tango/32x32/actions/mail-send-receive.png + images/tango/32x32/actions/media-eject.png + images/tango/32x32/actions/media-playback-pause.png + images/tango/32x32/actions/media-playback-start.png + images/tango/32x32/actions/media-playback-stop.png + images/tango/32x32/actions/media-record.png + images/tango/32x32/actions/media-seek-backward.png + images/tango/32x32/actions/media-seek-forward.png + images/tango/32x32/actions/media-skip-backward.png + images/tango/32x32/actions/media-skip-forward.png + images/tango/32x32/actions/process-stop.png + images/tango/32x32/actions/system-lock-screen.png + images/tango/32x32/actions/system-log-out.png + images/tango/32x32/actions/system-search.png + images/tango/32x32/actions/system-shutdown.png + images/tango/32x32/actions/tab-new.png + images/tango/32x32/actions/view-fullscreen.png + images/tango/32x32/actions/view-refresh.png + images/tango/32x32/actions/window-new.png + images/tango/32x32/animations/process-working.png + images/tango/32x32/apps/accessories-calculator.png + images/tango/32x32/apps/accessories-character-map.png + images/tango/32x32/apps/accessories-text-editor.png + images/tango/32x32/apps/help-browser.png + images/tango/32x32/apps/internet-group-chat.png + images/tango/32x32/apps/internet-mail.png + images/tango/32x32/apps/internet-news-reader.png + images/tango/32x32/apps/internet-web-browser.png + images/tango/32x32/apps/office-calendar.png + images/tango/32x32/apps/preferences-desktop-accessibility.png + images/tango/32x32/apps/preferences-desktop-assistive-technology.png + images/tango/32x32/apps/preferences-desktop-font.png + images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png + images/tango/32x32/apps/preferences-desktop-locale.png + images/tango/32x32/apps/preferences-desktop-multimedia.png + images/tango/32x32/apps/preferences-desktop-remote-desktop.png + images/tango/32x32/apps/preferences-desktop-screensaver.png + images/tango/32x32/apps/preferences-desktop-theme.png + images/tango/32x32/apps/preferences-desktop-wallpaper.png + images/tango/32x32/apps/preferences-system-network-proxy.png + images/tango/32x32/apps/preferences-system-session.png + images/tango/32x32/apps/preferences-system-windows.png + images/tango/32x32/apps/system-file-manager.png + images/tango/32x32/apps/system-installer.png + images/tango/32x32/apps/system-software-update.png + images/tango/32x32/apps/system-users.png + images/tango/32x32/apps/utilities-system-monitor.png + images/tango/32x32/apps/utilities-terminal.png + images/tango/32x32/categories/applications-accessories.png + images/tango/32x32/categories/applications-development.png + images/tango/32x32/categories/applications-games.png + images/tango/32x32/categories/applications-graphics.png + images/tango/32x32/categories/applications-internet.png + images/tango/32x32/categories/applications-multimedia.png + images/tango/32x32/categories/applications-office.png + images/tango/32x32/categories/applications-other.png + images/tango/32x32/categories/applications-system.png + images/tango/32x32/categories/preferences-desktop-peripherals.png + images/tango/32x32/categories/preferences-desktop.png + images/tango/32x32/categories/preferences-system.png + images/tango/32x32/devices/audio-card.png + images/tango/32x32/devices/audio-input-microphone.png + images/tango/32x32/devices/battery.png + images/tango/32x32/devices/camera-photo.png + images/tango/32x32/devices/camera-video.png + images/tango/32x32/devices/computer.png + images/tango/32x32/devices/drive-harddisk.png + images/tango/32x32/devices/drive-optical.png + images/tango/32x32/devices/drive-removable-media.png + images/tango/32x32/devices/input-gaming.png + images/tango/32x32/devices/input-keyboard.png + images/tango/32x32/devices/input-mouse.png + images/tango/32x32/devices/media-flash.png + images/tango/32x32/devices/media-floppy.png + images/tango/32x32/devices/media-optical.png + images/tango/32x32/devices/multimedia-player.png + images/tango/32x32/devices/network-wired.png + images/tango/32x32/devices/network-wireless.png + images/tango/32x32/devices/printer.png + images/tango/32x32/devices/video-display.png + images/tango/32x32/emblems/emblem-favorite.png + images/tango/32x32/emblems/emblem-important.png + images/tango/32x32/emblems/emblem-photos.png + images/tango/32x32/emblems/emblem-readonly.png + images/tango/32x32/emblems/emblem-symbolic-link.png + images/tango/32x32/emblems/emblem-system.png + images/tango/32x32/emblems/emblem-unreadable.png + images/tango/32x32/emotes/face-angel.png + images/tango/32x32/emotes/face-crying.png + images/tango/32x32/emotes/face-devilish.png + images/tango/32x32/emotes/face-glasses.png + images/tango/32x32/emotes/face-grin.png + images/tango/32x32/emotes/face-kiss.png + images/tango/32x32/emotes/face-monkey.png + images/tango/32x32/emotes/face-plain.png + images/tango/32x32/emotes/face-sad.png + images/tango/32x32/emotes/face-smile-big.png + images/tango/32x32/emotes/face-smile.png + images/tango/32x32/emotes/face-surprise.png + images/tango/32x32/emotes/face-wink.png + images/tango/32x32/mimetypes/application-certificate.png + images/tango/32x32/mimetypes/application-x-executable.png + images/tango/32x32/mimetypes/audio-x-generic.png + images/tango/32x32/mimetypes/font-x-generic.png + images/tango/32x32/mimetypes/image-x-generic.png + images/tango/32x32/mimetypes/package-x-generic.png + images/tango/32x32/mimetypes/text-html.png + images/tango/32x32/mimetypes/text-x-generic-template.png + images/tango/32x32/mimetypes/text-x-generic.png + images/tango/32x32/mimetypes/text-x-script.png + images/tango/32x32/mimetypes/video-x-generic.png + images/tango/32x32/mimetypes/x-office-address-book.png + images/tango/32x32/mimetypes/x-office-calendar.png + images/tango/32x32/mimetypes/x-office-document-template.png + images/tango/32x32/mimetypes/x-office-document.png + images/tango/32x32/mimetypes/x-office-drawing-template.png + images/tango/32x32/mimetypes/x-office-drawing.png + images/tango/32x32/mimetypes/x-office-presentation-template.png + images/tango/32x32/mimetypes/x-office-presentation.png + images/tango/32x32/mimetypes/x-office-spreadsheet-template.png + images/tango/32x32/mimetypes/x-office-spreadsheet.png + images/tango/32x32/places/folder-remote.png + images/tango/32x32/places/folder-saved-search.png + images/tango/32x32/places/folder.png + images/tango/32x32/places/network-server.png + images/tango/32x32/places/network-workgroup.png + images/tango/32x32/places/start-here.png + images/tango/32x32/places/user-desktop.png + images/tango/32x32/places/user-home.png + images/tango/32x32/places/user-trash.png + images/tango/32x32/status/audio-volume-high.png + images/tango/32x32/status/audio-volume-low.png + images/tango/32x32/status/audio-volume-medium.png + images/tango/32x32/status/audio-volume-muted.png + images/tango/32x32/status/battery-caution.png + images/tango/32x32/status/dialog-error.png + images/tango/32x32/status/dialog-information.png + images/tango/32x32/status/dialog-warning.png + images/tango/32x32/status/folder-drag-accept.png + images/tango/32x32/status/folder-open.png + images/tango/32x32/status/folder-visiting.png + images/tango/32x32/status/image-loading.png + images/tango/32x32/status/image-missing.png + images/tango/32x32/status/mail-attachment.png + images/tango/32x32/status/network-error.png + images/tango/32x32/status/network-idle.png + images/tango/32x32/status/network-offline.png + images/tango/32x32/status/network-receive.png + images/tango/32x32/status/network-transmit-receive.png + images/tango/32x32/status/network-transmit.png + images/tango/32x32/status/network-wireless-encrypted.png + images/tango/32x32/status/printer-error.png + images/tango/32x32/status/software-update-available.png + images/tango/32x32/status/software-update-urgent.png + images/tango/32x32/status/user-trash-full.png + images/tango/32x32/status/weather-clear-night.png + images/tango/32x32/status/weather-clear.png + images/tango/32x32/status/weather-few-clouds-night.png + images/tango/32x32/status/weather-few-clouds.png + images/tango/32x32/status/weather-overcast.png + images/tango/32x32/status/weather-severe-alert.png + images/tango/32x32/status/weather-showers-scattered.png + images/tango/32x32/status/weather-showers.png + images/tango/32x32/status/weather-snow.png + images/tango/32x32/status/weather-storm.png + images/tango/index.theme + + + + diff --git a/images/splash.png b/images/splash.png new file mode 100644 index 0000000..5329d63 Binary files /dev/null and b/images/splash.png differ diff --git a/images/tango/16x16/actions/address-book-new.png b/images/tango/16x16/actions/address-book-new.png new file mode 100644 index 0000000..2098cfd Binary files /dev/null and b/images/tango/16x16/actions/address-book-new.png differ diff --git a/images/tango/16x16/actions/appointment-new.png b/images/tango/16x16/actions/appointment-new.png new file mode 100644 index 0000000..18b7c67 Binary files /dev/null and b/images/tango/16x16/actions/appointment-new.png differ diff --git a/images/tango/16x16/actions/bookmark-new.png b/images/tango/16x16/actions/bookmark-new.png new file mode 100644 index 0000000..6cf6443 Binary files /dev/null and b/images/tango/16x16/actions/bookmark-new.png differ diff --git a/images/tango/16x16/actions/contact-new.png b/images/tango/16x16/actions/contact-new.png new file mode 100644 index 0000000..46573ff Binary files /dev/null and b/images/tango/16x16/actions/contact-new.png differ diff --git a/images/tango/16x16/actions/document-new.png b/images/tango/16x16/actions/document-new.png new file mode 100644 index 0000000..4c3efdd Binary files /dev/null and b/images/tango/16x16/actions/document-new.png differ diff --git a/images/tango/16x16/actions/document-open.png b/images/tango/16x16/actions/document-open.png new file mode 100644 index 0000000..ab94046 Binary files /dev/null and b/images/tango/16x16/actions/document-open.png differ diff --git a/images/tango/16x16/actions/document-pdf.png b/images/tango/16x16/actions/document-pdf.png new file mode 100644 index 0000000..4e1657f Binary files /dev/null and b/images/tango/16x16/actions/document-pdf.png differ diff --git a/images/tango/16x16/actions/document-print-preview.png b/images/tango/16x16/actions/document-print-preview.png new file mode 100644 index 0000000..ab92a30 Binary files /dev/null and b/images/tango/16x16/actions/document-print-preview.png differ diff --git a/images/tango/16x16/actions/document-print.png b/images/tango/16x16/actions/document-print.png new file mode 100644 index 0000000..35c37bd Binary files /dev/null and b/images/tango/16x16/actions/document-print.png differ diff --git a/images/tango/16x16/actions/document-properties.png b/images/tango/16x16/actions/document-properties.png new file mode 100644 index 0000000..ab0e8ea Binary files /dev/null and b/images/tango/16x16/actions/document-properties.png differ diff --git a/images/tango/16x16/actions/document-revert.png b/images/tango/16x16/actions/document-revert.png new file mode 100644 index 0000000..cf3c13b Binary files /dev/null and b/images/tango/16x16/actions/document-revert.png differ diff --git a/images/tango/16x16/actions/document-save-as.png b/images/tango/16x16/actions/document-save-as.png new file mode 100644 index 0000000..9bed143 Binary files /dev/null and b/images/tango/16x16/actions/document-save-as.png differ diff --git a/images/tango/16x16/actions/document-save.png b/images/tango/16x16/actions/document-save.png new file mode 100644 index 0000000..22ff495 Binary files /dev/null and b/images/tango/16x16/actions/document-save.png differ diff --git a/images/tango/16x16/actions/edit-clear.png b/images/tango/16x16/actions/edit-clear.png new file mode 100644 index 0000000..e6c8e8b Binary files /dev/null and b/images/tango/16x16/actions/edit-clear.png differ diff --git a/images/tango/16x16/actions/edit-copy.png b/images/tango/16x16/actions/edit-copy.png new file mode 100644 index 0000000..8dd48c4 Binary files /dev/null and b/images/tango/16x16/actions/edit-copy.png differ diff --git a/images/tango/16x16/actions/edit-cut.png b/images/tango/16x16/actions/edit-cut.png new file mode 100644 index 0000000..dc9eb9a Binary files /dev/null and b/images/tango/16x16/actions/edit-cut.png differ diff --git a/images/tango/16x16/actions/edit-delete.png b/images/tango/16x16/actions/edit-delete.png new file mode 100644 index 0000000..ea03150 Binary files /dev/null and b/images/tango/16x16/actions/edit-delete.png differ diff --git a/images/tango/16x16/actions/edit-find-replace.png b/images/tango/16x16/actions/edit-find-replace.png new file mode 100644 index 0000000..6edbef6 Binary files /dev/null and b/images/tango/16x16/actions/edit-find-replace.png differ diff --git a/images/tango/16x16/actions/edit-find.png b/images/tango/16x16/actions/edit-find.png new file mode 100644 index 0000000..d072d3c Binary files /dev/null and b/images/tango/16x16/actions/edit-find.png differ diff --git a/images/tango/16x16/actions/edit-paste.png b/images/tango/16x16/actions/edit-paste.png new file mode 100644 index 0000000..24588a3 Binary files /dev/null and b/images/tango/16x16/actions/edit-paste.png differ diff --git a/images/tango/16x16/actions/edit-redo.png b/images/tango/16x16/actions/edit-redo.png new file mode 100644 index 0000000..c3b0df0 Binary files /dev/null and b/images/tango/16x16/actions/edit-redo.png differ diff --git a/images/tango/16x16/actions/edit-select-all.png b/images/tango/16x16/actions/edit-select-all.png new file mode 100644 index 0000000..f4b0b19 Binary files /dev/null and b/images/tango/16x16/actions/edit-select-all.png differ diff --git a/images/tango/16x16/actions/edit-undo.png b/images/tango/16x16/actions/edit-undo.png new file mode 100644 index 0000000..8b0fef9 Binary files /dev/null and b/images/tango/16x16/actions/edit-undo.png differ diff --git a/images/tango/16x16/actions/folder-new.png b/images/tango/16x16/actions/folder-new.png new file mode 100644 index 0000000..628f4d5 Binary files /dev/null and b/images/tango/16x16/actions/folder-new.png differ diff --git a/images/tango/16x16/actions/format-indent-less.png b/images/tango/16x16/actions/format-indent-less.png new file mode 100644 index 0000000..1787a7f Binary files /dev/null and b/images/tango/16x16/actions/format-indent-less.png differ diff --git a/images/tango/16x16/actions/format-indent-more.png b/images/tango/16x16/actions/format-indent-more.png new file mode 100644 index 0000000..6bad6bb Binary files /dev/null and b/images/tango/16x16/actions/format-indent-more.png differ diff --git a/images/tango/16x16/actions/format-justify-center.png b/images/tango/16x16/actions/format-justify-center.png new file mode 100644 index 0000000..207dc4c Binary files /dev/null and b/images/tango/16x16/actions/format-justify-center.png differ diff --git a/images/tango/16x16/actions/format-justify-fill.png b/images/tango/16x16/actions/format-justify-fill.png new file mode 100644 index 0000000..663cbad Binary files /dev/null and b/images/tango/16x16/actions/format-justify-fill.png differ diff --git a/images/tango/16x16/actions/format-justify-left.png b/images/tango/16x16/actions/format-justify-left.png new file mode 100644 index 0000000..d9b40a7 Binary files /dev/null and b/images/tango/16x16/actions/format-justify-left.png differ diff --git a/images/tango/16x16/actions/format-justify-right.png b/images/tango/16x16/actions/format-justify-right.png new file mode 100644 index 0000000..c301307 Binary files /dev/null and b/images/tango/16x16/actions/format-justify-right.png differ diff --git a/images/tango/16x16/actions/format-text-bold.png b/images/tango/16x16/actions/format-text-bold.png new file mode 100644 index 0000000..c9cb630 Binary files /dev/null and b/images/tango/16x16/actions/format-text-bold.png differ diff --git a/images/tango/16x16/actions/format-text-italic.png b/images/tango/16x16/actions/format-text-italic.png new file mode 100644 index 0000000..977ea82 Binary files /dev/null and b/images/tango/16x16/actions/format-text-italic.png differ diff --git a/images/tango/16x16/actions/format-text-strikethrough.png b/images/tango/16x16/actions/format-text-strikethrough.png new file mode 100644 index 0000000..ccee76e Binary files /dev/null and b/images/tango/16x16/actions/format-text-strikethrough.png differ diff --git a/images/tango/16x16/actions/format-text-underline.png b/images/tango/16x16/actions/format-text-underline.png new file mode 100644 index 0000000..0c48721 Binary files /dev/null and b/images/tango/16x16/actions/format-text-underline.png differ diff --git a/images/tango/16x16/actions/go-bottom.png b/images/tango/16x16/actions/go-bottom.png new file mode 100644 index 0000000..2c5a803 Binary files /dev/null and b/images/tango/16x16/actions/go-bottom.png differ diff --git a/images/tango/16x16/actions/go-down.png b/images/tango/16x16/actions/go-down.png new file mode 100644 index 0000000..3dd7fcc Binary files /dev/null and b/images/tango/16x16/actions/go-down.png differ diff --git a/images/tango/16x16/actions/go-first.png b/images/tango/16x16/actions/go-first.png new file mode 100644 index 0000000..9c15c09 Binary files /dev/null and b/images/tango/16x16/actions/go-first.png differ diff --git a/images/tango/16x16/actions/go-home.png b/images/tango/16x16/actions/go-home.png new file mode 100644 index 0000000..a46fb22 Binary files /dev/null and b/images/tango/16x16/actions/go-home.png differ diff --git a/images/tango/16x16/actions/go-jump.png b/images/tango/16x16/actions/go-jump.png new file mode 100644 index 0000000..1d218c3 Binary files /dev/null and b/images/tango/16x16/actions/go-jump.png differ diff --git a/images/tango/16x16/actions/go-last.png b/images/tango/16x16/actions/go-last.png new file mode 100644 index 0000000..6e904ef Binary files /dev/null and b/images/tango/16x16/actions/go-last.png differ diff --git a/images/tango/16x16/actions/go-next.png b/images/tango/16x16/actions/go-next.png new file mode 100644 index 0000000..6ef8de7 Binary files /dev/null and b/images/tango/16x16/actions/go-next.png differ diff --git a/images/tango/16x16/actions/go-previous.png b/images/tango/16x16/actions/go-previous.png new file mode 100644 index 0000000..659cd90 Binary files /dev/null and b/images/tango/16x16/actions/go-previous.png differ diff --git a/images/tango/16x16/actions/go-top.png b/images/tango/16x16/actions/go-top.png new file mode 100644 index 0000000..70f2c99 Binary files /dev/null and b/images/tango/16x16/actions/go-top.png differ diff --git a/images/tango/16x16/actions/go-up.png b/images/tango/16x16/actions/go-up.png new file mode 100644 index 0000000..fa9a7d7 Binary files /dev/null and b/images/tango/16x16/actions/go-up.png differ diff --git a/images/tango/16x16/actions/list-add.png b/images/tango/16x16/actions/list-add.png new file mode 100644 index 0000000..1aa7f09 Binary files /dev/null and b/images/tango/16x16/actions/list-add.png differ diff --git a/images/tango/16x16/actions/list-remove.png b/images/tango/16x16/actions/list-remove.png new file mode 100644 index 0000000..00b654e Binary files /dev/null and b/images/tango/16x16/actions/list-remove.png differ diff --git a/images/tango/16x16/actions/mail-forward.png b/images/tango/16x16/actions/mail-forward.png new file mode 100644 index 0000000..de0199b Binary files /dev/null and b/images/tango/16x16/actions/mail-forward.png differ diff --git a/images/tango/16x16/actions/mail-mark-junk.png b/images/tango/16x16/actions/mail-mark-junk.png new file mode 100644 index 0000000..f12d452 Binary files /dev/null and b/images/tango/16x16/actions/mail-mark-junk.png differ diff --git a/images/tango/16x16/actions/mail-mark-not-junk.png b/images/tango/16x16/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..87c425f Binary files /dev/null and b/images/tango/16x16/actions/mail-mark-not-junk.png differ diff --git a/images/tango/16x16/actions/mail-message-new.png b/images/tango/16x16/actions/mail-message-new.png new file mode 100644 index 0000000..7c68cb8 Binary files /dev/null and b/images/tango/16x16/actions/mail-message-new.png differ diff --git a/images/tango/16x16/actions/mail-reply-all.png b/images/tango/16x16/actions/mail-reply-all.png new file mode 100644 index 0000000..2017b0a Binary files /dev/null and b/images/tango/16x16/actions/mail-reply-all.png differ diff --git a/images/tango/16x16/actions/mail-reply-sender.png b/images/tango/16x16/actions/mail-reply-sender.png new file mode 100644 index 0000000..a619741 Binary files /dev/null and b/images/tango/16x16/actions/mail-reply-sender.png differ diff --git a/images/tango/16x16/actions/mail-send-receive.png b/images/tango/16x16/actions/mail-send-receive.png new file mode 100644 index 0000000..3eb6a9c Binary files /dev/null and b/images/tango/16x16/actions/mail-send-receive.png differ diff --git a/images/tango/16x16/actions/media-eject.png b/images/tango/16x16/actions/media-eject.png new file mode 100644 index 0000000..2084067 Binary files /dev/null and b/images/tango/16x16/actions/media-eject.png differ diff --git a/images/tango/16x16/actions/media-playback-pause.png b/images/tango/16x16/actions/media-playback-pause.png new file mode 100644 index 0000000..c8b4fe2 Binary files /dev/null and b/images/tango/16x16/actions/media-playback-pause.png differ diff --git a/images/tango/16x16/actions/media-playback-start.png b/images/tango/16x16/actions/media-playback-start.png new file mode 100644 index 0000000..a7de0fe Binary files /dev/null and b/images/tango/16x16/actions/media-playback-start.png differ diff --git a/images/tango/16x16/actions/media-playback-stop.png b/images/tango/16x16/actions/media-playback-stop.png new file mode 100644 index 0000000..ede2815 Binary files /dev/null and b/images/tango/16x16/actions/media-playback-stop.png differ diff --git a/images/tango/16x16/actions/media-record.png b/images/tango/16x16/actions/media-record.png new file mode 100644 index 0000000..2f66cde Binary files /dev/null and b/images/tango/16x16/actions/media-record.png differ diff --git a/images/tango/16x16/actions/media-seek-backward.png b/images/tango/16x16/actions/media-seek-backward.png new file mode 100644 index 0000000..ffcac31 Binary files /dev/null and b/images/tango/16x16/actions/media-seek-backward.png differ diff --git a/images/tango/16x16/actions/media-seek-forward.png b/images/tango/16x16/actions/media-seek-forward.png new file mode 100644 index 0000000..4d7e2cd Binary files /dev/null and b/images/tango/16x16/actions/media-seek-forward.png differ diff --git a/images/tango/16x16/actions/media-skip-backward.png b/images/tango/16x16/actions/media-skip-backward.png new file mode 100644 index 0000000..94381f5 Binary files /dev/null and b/images/tango/16x16/actions/media-skip-backward.png differ diff --git a/images/tango/16x16/actions/media-skip-forward.png b/images/tango/16x16/actions/media-skip-forward.png new file mode 100644 index 0000000..758ec6f Binary files /dev/null and b/images/tango/16x16/actions/media-skip-forward.png differ diff --git a/images/tango/16x16/actions/process-stop.png b/images/tango/16x16/actions/process-stop.png new file mode 100644 index 0000000..ab6808f Binary files /dev/null and b/images/tango/16x16/actions/process-stop.png differ diff --git a/images/tango/16x16/actions/system-lock-screen.png b/images/tango/16x16/actions/system-lock-screen.png new file mode 100644 index 0000000..f7ea0cd Binary files /dev/null and b/images/tango/16x16/actions/system-lock-screen.png differ diff --git a/images/tango/16x16/actions/system-log-out.png b/images/tango/16x16/actions/system-log-out.png new file mode 100644 index 0000000..0010931 Binary files /dev/null and b/images/tango/16x16/actions/system-log-out.png differ diff --git a/images/tango/16x16/actions/system-search.png b/images/tango/16x16/actions/system-search.png new file mode 100644 index 0000000..fd7f0b0 Binary files /dev/null and b/images/tango/16x16/actions/system-search.png differ diff --git a/images/tango/16x16/actions/system-shutdown.png b/images/tango/16x16/actions/system-shutdown.png new file mode 100644 index 0000000..afe62de Binary files /dev/null and b/images/tango/16x16/actions/system-shutdown.png differ diff --git a/images/tango/16x16/actions/tab-new.png b/images/tango/16x16/actions/tab-new.png new file mode 100644 index 0000000..3e590f6 Binary files /dev/null and b/images/tango/16x16/actions/tab-new.png differ diff --git a/images/tango/16x16/actions/view-fullscreen.png b/images/tango/16x16/actions/view-fullscreen.png new file mode 100644 index 0000000..ffdabd4 Binary files /dev/null and b/images/tango/16x16/actions/view-fullscreen.png differ diff --git a/images/tango/16x16/actions/view-refresh.png b/images/tango/16x16/actions/view-refresh.png new file mode 100644 index 0000000..3fd71d6 Binary files /dev/null and b/images/tango/16x16/actions/view-refresh.png differ diff --git a/images/tango/16x16/actions/window-new.png b/images/tango/16x16/actions/window-new.png new file mode 100644 index 0000000..0e12ef9 Binary files /dev/null and b/images/tango/16x16/actions/window-new.png differ diff --git a/images/tango/16x16/animations/process-working.png b/images/tango/16x16/animations/process-working.png new file mode 100644 index 0000000..984bde4 Binary files /dev/null and b/images/tango/16x16/animations/process-working.png differ diff --git a/images/tango/16x16/apps/accessories-calculator.png b/images/tango/16x16/apps/accessories-calculator.png new file mode 100644 index 0000000..9248971 Binary files /dev/null and b/images/tango/16x16/apps/accessories-calculator.png differ diff --git a/images/tango/16x16/apps/accessories-character-map.png b/images/tango/16x16/apps/accessories-character-map.png new file mode 100644 index 0000000..5dd1124 Binary files /dev/null and b/images/tango/16x16/apps/accessories-character-map.png differ diff --git a/images/tango/16x16/apps/accessories-text-editor.png b/images/tango/16x16/apps/accessories-text-editor.png new file mode 100644 index 0000000..188e1c1 Binary files /dev/null and b/images/tango/16x16/apps/accessories-text-editor.png differ diff --git a/images/tango/16x16/apps/help-browser.png b/images/tango/16x16/apps/help-browser.png new file mode 100644 index 0000000..f25fc3f Binary files /dev/null and b/images/tango/16x16/apps/help-browser.png differ diff --git a/images/tango/16x16/apps/internet-group-chat.png b/images/tango/16x16/apps/internet-group-chat.png new file mode 100644 index 0000000..f6e8325 Binary files /dev/null and b/images/tango/16x16/apps/internet-group-chat.png differ diff --git a/images/tango/16x16/apps/internet-mail.png b/images/tango/16x16/apps/internet-mail.png new file mode 100644 index 0000000..859251f Binary files /dev/null and b/images/tango/16x16/apps/internet-mail.png differ diff --git a/images/tango/16x16/apps/internet-news-reader.png b/images/tango/16x16/apps/internet-news-reader.png new file mode 100644 index 0000000..a9850ee Binary files /dev/null and b/images/tango/16x16/apps/internet-news-reader.png differ diff --git a/images/tango/16x16/apps/internet-web-browser.png b/images/tango/16x16/apps/internet-web-browser.png new file mode 100644 index 0000000..ac5957a Binary files /dev/null and b/images/tango/16x16/apps/internet-web-browser.png differ diff --git a/images/tango/16x16/apps/office-calendar.png b/images/tango/16x16/apps/office-calendar.png new file mode 100644 index 0000000..106a592 Binary files /dev/null and b/images/tango/16x16/apps/office-calendar.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-accessibility.png b/images/tango/16x16/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..b365c27 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-accessibility.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-assistive-technology.png b/images/tango/16x16/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..513d817 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-font.png b/images/tango/16x16/apps/preferences-desktop-font.png new file mode 100644 index 0000000..18a0149 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-font.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png b/images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..291dc1a Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-locale.png b/images/tango/16x16/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..5ef73a6 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-locale.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-multimedia.png b/images/tango/16x16/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..2e5ba43 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-multimedia.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-remote-desktop.png b/images/tango/16x16/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..b790f63 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-screensaver.png b/images/tango/16x16/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..dc297db Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-screensaver.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-theme.png b/images/tango/16x16/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..fbea772 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-theme.png differ diff --git a/images/tango/16x16/apps/preferences-desktop-wallpaper.png b/images/tango/16x16/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..e7cc834 Binary files /dev/null and b/images/tango/16x16/apps/preferences-desktop-wallpaper.png differ diff --git a/images/tango/16x16/apps/preferences-system-network-proxy.png b/images/tango/16x16/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..bdeb79d Binary files /dev/null and b/images/tango/16x16/apps/preferences-system-network-proxy.png differ diff --git a/images/tango/16x16/apps/preferences-system-session.png b/images/tango/16x16/apps/preferences-system-session.png new file mode 100644 index 0000000..35f8b57 Binary files /dev/null and b/images/tango/16x16/apps/preferences-system-session.png differ diff --git a/images/tango/16x16/apps/preferences-system-windows.png b/images/tango/16x16/apps/preferences-system-windows.png new file mode 100644 index 0000000..596caf9 Binary files /dev/null and b/images/tango/16x16/apps/preferences-system-windows.png differ diff --git a/images/tango/16x16/apps/system-file-manager.png b/images/tango/16x16/apps/system-file-manager.png new file mode 100644 index 0000000..60cade4 Binary files /dev/null and b/images/tango/16x16/apps/system-file-manager.png differ diff --git a/images/tango/16x16/apps/system-installer.png b/images/tango/16x16/apps/system-installer.png new file mode 100644 index 0000000..d16abcb Binary files /dev/null and b/images/tango/16x16/apps/system-installer.png differ diff --git a/images/tango/16x16/apps/system-software-update.png b/images/tango/16x16/apps/system-software-update.png new file mode 100644 index 0000000..58f19c6 Binary files /dev/null and b/images/tango/16x16/apps/system-software-update.png differ diff --git a/images/tango/16x16/apps/system-users.png b/images/tango/16x16/apps/system-users.png new file mode 100644 index 0000000..9d2d500 Binary files /dev/null and b/images/tango/16x16/apps/system-users.png differ diff --git a/images/tango/16x16/apps/utilities-system-monitor.png b/images/tango/16x16/apps/utilities-system-monitor.png new file mode 100644 index 0000000..8734e77 Binary files /dev/null and b/images/tango/16x16/apps/utilities-system-monitor.png differ diff --git a/images/tango/16x16/apps/utilities-terminal.png b/images/tango/16x16/apps/utilities-terminal.png new file mode 100644 index 0000000..c5b797a Binary files /dev/null and b/images/tango/16x16/apps/utilities-terminal.png differ diff --git a/images/tango/16x16/categories/applications-accessories.png b/images/tango/16x16/categories/applications-accessories.png new file mode 100644 index 0000000..c8d899c Binary files /dev/null and b/images/tango/16x16/categories/applications-accessories.png differ diff --git a/images/tango/16x16/categories/applications-development.png b/images/tango/16x16/categories/applications-development.png new file mode 100644 index 0000000..4375227 Binary files /dev/null and b/images/tango/16x16/categories/applications-development.png differ diff --git a/images/tango/16x16/categories/applications-games.png b/images/tango/16x16/categories/applications-games.png new file mode 100644 index 0000000..4ba874b Binary files /dev/null and b/images/tango/16x16/categories/applications-games.png differ diff --git a/images/tango/16x16/categories/applications-graphics.png b/images/tango/16x16/categories/applications-graphics.png new file mode 100644 index 0000000..4bb955f Binary files /dev/null and b/images/tango/16x16/categories/applications-graphics.png differ diff --git a/images/tango/16x16/categories/applications-internet.png b/images/tango/16x16/categories/applications-internet.png new file mode 100644 index 0000000..a588968 Binary files /dev/null and b/images/tango/16x16/categories/applications-internet.png differ diff --git a/images/tango/16x16/categories/applications-multimedia.png b/images/tango/16x16/categories/applications-multimedia.png new file mode 100644 index 0000000..3e4ced5 Binary files /dev/null and b/images/tango/16x16/categories/applications-multimedia.png differ diff --git a/images/tango/16x16/categories/applications-office.png b/images/tango/16x16/categories/applications-office.png new file mode 100644 index 0000000..f9b3bb9 Binary files /dev/null and b/images/tango/16x16/categories/applications-office.png differ diff --git a/images/tango/16x16/categories/applications-other.png b/images/tango/16x16/categories/applications-other.png new file mode 100644 index 0000000..0d49f9d Binary files /dev/null and b/images/tango/16x16/categories/applications-other.png differ diff --git a/images/tango/16x16/categories/applications-system.png b/images/tango/16x16/categories/applications-system.png new file mode 100644 index 0000000..d90ab66 Binary files /dev/null and b/images/tango/16x16/categories/applications-system.png differ diff --git a/images/tango/16x16/categories/preferences-desktop-peripherals.png b/images/tango/16x16/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..2a63cee Binary files /dev/null and b/images/tango/16x16/categories/preferences-desktop-peripherals.png differ diff --git a/images/tango/16x16/categories/preferences-desktop.png b/images/tango/16x16/categories/preferences-desktop.png new file mode 100644 index 0000000..68f916c Binary files /dev/null and b/images/tango/16x16/categories/preferences-desktop.png differ diff --git a/images/tango/16x16/categories/preferences-system.png b/images/tango/16x16/categories/preferences-system.png new file mode 100644 index 0000000..9460dfc Binary files /dev/null and b/images/tango/16x16/categories/preferences-system.png differ diff --git a/images/tango/16x16/devices/audio-card.png b/images/tango/16x16/devices/audio-card.png new file mode 100644 index 0000000..aaa7907 Binary files /dev/null and b/images/tango/16x16/devices/audio-card.png differ diff --git a/images/tango/16x16/devices/audio-input-microphone.png b/images/tango/16x16/devices/audio-input-microphone.png new file mode 100644 index 0000000..53a0393 Binary files /dev/null and b/images/tango/16x16/devices/audio-input-microphone.png differ diff --git a/images/tango/16x16/devices/battery.png b/images/tango/16x16/devices/battery.png new file mode 100644 index 0000000..8684e2a Binary files /dev/null and b/images/tango/16x16/devices/battery.png differ diff --git a/images/tango/16x16/devices/camera-photo.png b/images/tango/16x16/devices/camera-photo.png new file mode 100644 index 0000000..1e8e886 Binary files /dev/null and b/images/tango/16x16/devices/camera-photo.png differ diff --git a/images/tango/16x16/devices/camera-video.png b/images/tango/16x16/devices/camera-video.png new file mode 100644 index 0000000..98fc211 Binary files /dev/null and b/images/tango/16x16/devices/camera-video.png differ diff --git a/images/tango/16x16/devices/computer.png b/images/tango/16x16/devices/computer.png new file mode 100644 index 0000000..d0b397b Binary files /dev/null and b/images/tango/16x16/devices/computer.png differ diff --git a/images/tango/16x16/devices/drive-harddisk.png b/images/tango/16x16/devices/drive-harddisk.png new file mode 100644 index 0000000..5c3b858 Binary files /dev/null and b/images/tango/16x16/devices/drive-harddisk.png differ diff --git a/images/tango/16x16/devices/drive-optical.png b/images/tango/16x16/devices/drive-optical.png new file mode 100644 index 0000000..4ced6fe Binary files /dev/null and b/images/tango/16x16/devices/drive-optical.png differ diff --git a/images/tango/16x16/devices/drive-removable-media.png b/images/tango/16x16/devices/drive-removable-media.png new file mode 100644 index 0000000..9153898 Binary files /dev/null and b/images/tango/16x16/devices/drive-removable-media.png differ diff --git a/images/tango/16x16/devices/input-gaming.png b/images/tango/16x16/devices/input-gaming.png new file mode 100644 index 0000000..9d040ee Binary files /dev/null and b/images/tango/16x16/devices/input-gaming.png differ diff --git a/images/tango/16x16/devices/input-keyboard.png b/images/tango/16x16/devices/input-keyboard.png new file mode 100644 index 0000000..fab414b Binary files /dev/null and b/images/tango/16x16/devices/input-keyboard.png differ diff --git a/images/tango/16x16/devices/input-mouse.png b/images/tango/16x16/devices/input-mouse.png new file mode 100644 index 0000000..eeda4db Binary files /dev/null and b/images/tango/16x16/devices/input-mouse.png differ diff --git a/images/tango/16x16/devices/media-flash.png b/images/tango/16x16/devices/media-flash.png new file mode 100644 index 0000000..bef542a Binary files /dev/null and b/images/tango/16x16/devices/media-flash.png differ diff --git a/images/tango/16x16/devices/media-floppy.png b/images/tango/16x16/devices/media-floppy.png new file mode 100644 index 0000000..f1d7a19 Binary files /dev/null and b/images/tango/16x16/devices/media-floppy.png differ diff --git a/images/tango/16x16/devices/media-optical.png b/images/tango/16x16/devices/media-optical.png new file mode 100644 index 0000000..760de93 Binary files /dev/null and b/images/tango/16x16/devices/media-optical.png differ diff --git a/images/tango/16x16/devices/multimedia-player.png b/images/tango/16x16/devices/multimedia-player.png new file mode 100644 index 0000000..461e9de Binary files /dev/null and b/images/tango/16x16/devices/multimedia-player.png differ diff --git a/images/tango/16x16/devices/network-wired.png b/images/tango/16x16/devices/network-wired.png new file mode 100644 index 0000000..3ac6b35 Binary files /dev/null and b/images/tango/16x16/devices/network-wired.png differ diff --git a/images/tango/16x16/devices/network-wireless.png b/images/tango/16x16/devices/network-wireless.png new file mode 100644 index 0000000..2dc6250 Binary files /dev/null and b/images/tango/16x16/devices/network-wireless.png differ diff --git a/images/tango/16x16/devices/printer.png b/images/tango/16x16/devices/printer.png new file mode 100644 index 0000000..12a4e39 Binary files /dev/null and b/images/tango/16x16/devices/printer.png differ diff --git a/images/tango/16x16/devices/video-display.png b/images/tango/16x16/devices/video-display.png new file mode 100644 index 0000000..226881f Binary files /dev/null and b/images/tango/16x16/devices/video-display.png differ diff --git a/images/tango/16x16/emblems/emblem-favorite.png b/images/tango/16x16/emblems/emblem-favorite.png new file mode 100644 index 0000000..3acb57d Binary files /dev/null and b/images/tango/16x16/emblems/emblem-favorite.png differ diff --git a/images/tango/16x16/emblems/emblem-important.png b/images/tango/16x16/emblems/emblem-important.png new file mode 100644 index 0000000..81e9ed2 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-important.png differ diff --git a/images/tango/16x16/emblems/emblem-photos.png b/images/tango/16x16/emblems/emblem-photos.png new file mode 100644 index 0000000..ab40463 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-photos.png differ diff --git a/images/tango/16x16/emblems/emblem-readonly.png b/images/tango/16x16/emblems/emblem-readonly.png new file mode 100644 index 0000000..0466619 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-readonly.png differ diff --git a/images/tango/16x16/emblems/emblem-symbolic-link.png b/images/tango/16x16/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..800b9e8 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-symbolic-link.png differ diff --git a/images/tango/16x16/emblems/emblem-system.png b/images/tango/16x16/emblems/emblem-system.png new file mode 100644 index 0000000..259ed26 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-system.png differ diff --git a/images/tango/16x16/emblems/emblem-unreadable.png b/images/tango/16x16/emblems/emblem-unreadable.png new file mode 100644 index 0000000..5c08b05 Binary files /dev/null and b/images/tango/16x16/emblems/emblem-unreadable.png differ diff --git a/images/tango/16x16/emotes/face-angel.png b/images/tango/16x16/emotes/face-angel.png new file mode 100644 index 0000000..d2c5e94 Binary files /dev/null and b/images/tango/16x16/emotes/face-angel.png differ diff --git a/images/tango/16x16/emotes/face-crying.png b/images/tango/16x16/emotes/face-crying.png new file mode 100644 index 0000000..2620dab Binary files /dev/null and b/images/tango/16x16/emotes/face-crying.png differ diff --git a/images/tango/16x16/emotes/face-devilish.png b/images/tango/16x16/emotes/face-devilish.png new file mode 100644 index 0000000..6edf683 Binary files /dev/null and b/images/tango/16x16/emotes/face-devilish.png differ diff --git a/images/tango/16x16/emotes/face-glasses.png b/images/tango/16x16/emotes/face-glasses.png new file mode 100644 index 0000000..00c2cd4 Binary files /dev/null and b/images/tango/16x16/emotes/face-glasses.png differ diff --git a/images/tango/16x16/emotes/face-grin.png b/images/tango/16x16/emotes/face-grin.png new file mode 100644 index 0000000..0d013d5 Binary files /dev/null and b/images/tango/16x16/emotes/face-grin.png differ diff --git a/images/tango/16x16/emotes/face-kiss.png b/images/tango/16x16/emotes/face-kiss.png new file mode 100644 index 0000000..809c1cf Binary files /dev/null and b/images/tango/16x16/emotes/face-kiss.png differ diff --git a/images/tango/16x16/emotes/face-monkey.png b/images/tango/16x16/emotes/face-monkey.png new file mode 100644 index 0000000..69db8fa Binary files /dev/null and b/images/tango/16x16/emotes/face-monkey.png differ diff --git a/images/tango/16x16/emotes/face-plain.png b/images/tango/16x16/emotes/face-plain.png new file mode 100644 index 0000000..31cf984 Binary files /dev/null and b/images/tango/16x16/emotes/face-plain.png differ diff --git a/images/tango/16x16/emotes/face-sad.png b/images/tango/16x16/emotes/face-sad.png new file mode 100644 index 0000000..159c04b Binary files /dev/null and b/images/tango/16x16/emotes/face-sad.png differ diff --git a/images/tango/16x16/emotes/face-smile-big.png b/images/tango/16x16/emotes/face-smile-big.png new file mode 100644 index 0000000..9114fde Binary files /dev/null and b/images/tango/16x16/emotes/face-smile-big.png differ diff --git a/images/tango/16x16/emotes/face-smile.png b/images/tango/16x16/emotes/face-smile.png new file mode 100644 index 0000000..de862b1 Binary files /dev/null and b/images/tango/16x16/emotes/face-smile.png differ diff --git a/images/tango/16x16/emotes/face-surprise.png b/images/tango/16x16/emotes/face-surprise.png new file mode 100644 index 0000000..4b4d423 Binary files /dev/null and b/images/tango/16x16/emotes/face-surprise.png differ diff --git a/images/tango/16x16/emotes/face-wink.png b/images/tango/16x16/emotes/face-wink.png new file mode 100644 index 0000000..e2db57e Binary files /dev/null and b/images/tango/16x16/emotes/face-wink.png differ diff --git a/images/tango/16x16/mimetypes/application-certificate.png b/images/tango/16x16/mimetypes/application-certificate.png new file mode 100644 index 0000000..486913d Binary files /dev/null and b/images/tango/16x16/mimetypes/application-certificate.png differ diff --git a/images/tango/16x16/mimetypes/application-x-executable.png b/images/tango/16x16/mimetypes/application-x-executable.png new file mode 100644 index 0000000..003ded2 Binary files /dev/null and b/images/tango/16x16/mimetypes/application-x-executable.png differ diff --git a/images/tango/16x16/mimetypes/audio-x-generic.png b/images/tango/16x16/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..2bd5af9 Binary files /dev/null and b/images/tango/16x16/mimetypes/audio-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/font-x-generic.png b/images/tango/16x16/mimetypes/font-x-generic.png new file mode 100644 index 0000000..bdbc1a8 Binary files /dev/null and b/images/tango/16x16/mimetypes/font-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/image-x-generic.png b/images/tango/16x16/mimetypes/image-x-generic.png new file mode 100644 index 0000000..68da502 Binary files /dev/null and b/images/tango/16x16/mimetypes/image-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/package-x-generic.png b/images/tango/16x16/mimetypes/package-x-generic.png new file mode 100644 index 0000000..9015426 Binary files /dev/null and b/images/tango/16x16/mimetypes/package-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/text-html.png b/images/tango/16x16/mimetypes/text-html.png new file mode 100644 index 0000000..53014ab Binary files /dev/null and b/images/tango/16x16/mimetypes/text-html.png differ diff --git a/images/tango/16x16/mimetypes/text-x-generic-template.png b/images/tango/16x16/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..a0cc462 Binary files /dev/null and b/images/tango/16x16/mimetypes/text-x-generic-template.png differ diff --git a/images/tango/16x16/mimetypes/text-x-generic.png b/images/tango/16x16/mimetypes/text-x-generic.png new file mode 100644 index 0000000..2d7f2d6 Binary files /dev/null and b/images/tango/16x16/mimetypes/text-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/text-x-script.png b/images/tango/16x16/mimetypes/text-x-script.png new file mode 100644 index 0000000..c923098 Binary files /dev/null and b/images/tango/16x16/mimetypes/text-x-script.png differ diff --git a/images/tango/16x16/mimetypes/video-x-generic.png b/images/tango/16x16/mimetypes/video-x-generic.png new file mode 100644 index 0000000..64e7a30 Binary files /dev/null and b/images/tango/16x16/mimetypes/video-x-generic.png differ diff --git a/images/tango/16x16/mimetypes/x-office-address-book.png b/images/tango/16x16/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..f3b5d9d Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-address-book.png differ diff --git a/images/tango/16x16/mimetypes/x-office-calendar.png b/images/tango/16x16/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..f6978d7 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-calendar.png differ diff --git a/images/tango/16x16/mimetypes/x-office-document-template.png b/images/tango/16x16/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..d1d9e7c Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-document-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-document.png b/images/tango/16x16/mimetypes/x-office-document.png new file mode 100644 index 0000000..d18082e Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-document.png differ diff --git a/images/tango/16x16/mimetypes/x-office-drawing-template.png b/images/tango/16x16/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..dc384db Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-drawing-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-drawing.png b/images/tango/16x16/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..ffbb9e4 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-drawing.png differ diff --git a/images/tango/16x16/mimetypes/x-office-presentation-template.png b/images/tango/16x16/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..d90d034 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-presentation-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-presentation.png b/images/tango/16x16/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..f7ea302 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-presentation.png differ diff --git a/images/tango/16x16/mimetypes/x-office-spreadsheet-template.png b/images/tango/16x16/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..e8bf570 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/tango/16x16/mimetypes/x-office-spreadsheet.png b/images/tango/16x16/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..a6b1268 Binary files /dev/null and b/images/tango/16x16/mimetypes/x-office-spreadsheet.png differ diff --git a/images/tango/16x16/places/folder-remote.png b/images/tango/16x16/places/folder-remote.png new file mode 100644 index 0000000..5234eab Binary files /dev/null and b/images/tango/16x16/places/folder-remote.png differ diff --git a/images/tango/16x16/places/folder-saved-search.png b/images/tango/16x16/places/folder-saved-search.png new file mode 100644 index 0000000..ca24a36 Binary files /dev/null and b/images/tango/16x16/places/folder-saved-search.png differ diff --git a/images/tango/16x16/places/folder.png b/images/tango/16x16/places/folder.png new file mode 100644 index 0000000..65bd0bb Binary files /dev/null and b/images/tango/16x16/places/folder.png differ diff --git a/images/tango/16x16/places/network-server.png b/images/tango/16x16/places/network-server.png new file mode 100644 index 0000000..068ffeb Binary files /dev/null and b/images/tango/16x16/places/network-server.png differ diff --git a/images/tango/16x16/places/network-workgroup.png b/images/tango/16x16/places/network-workgroup.png new file mode 100644 index 0000000..5c140d8 Binary files /dev/null and b/images/tango/16x16/places/network-workgroup.png differ diff --git a/images/tango/16x16/places/start-here.png b/images/tango/16x16/places/start-here.png new file mode 100644 index 0000000..bd516a5 Binary files /dev/null and b/images/tango/16x16/places/start-here.png differ diff --git a/images/tango/16x16/places/user-desktop.png b/images/tango/16x16/places/user-desktop.png new file mode 100644 index 0000000..4c9787c Binary files /dev/null and b/images/tango/16x16/places/user-desktop.png differ diff --git a/images/tango/16x16/places/user-home.png b/images/tango/16x16/places/user-home.png new file mode 100644 index 0000000..7b9110d Binary files /dev/null and b/images/tango/16x16/places/user-home.png differ diff --git a/images/tango/16x16/places/user-trash.png b/images/tango/16x16/places/user-trash.png new file mode 100644 index 0000000..0e0953c Binary files /dev/null and b/images/tango/16x16/places/user-trash.png differ diff --git a/images/tango/16x16/status/audio-volume-high.png b/images/tango/16x16/status/audio-volume-high.png new file mode 100644 index 0000000..ec8f00b Binary files /dev/null and b/images/tango/16x16/status/audio-volume-high.png differ diff --git a/images/tango/16x16/status/audio-volume-low.png b/images/tango/16x16/status/audio-volume-low.png new file mode 100644 index 0000000..4d7239f Binary files /dev/null and b/images/tango/16x16/status/audio-volume-low.png differ diff --git a/images/tango/16x16/status/audio-volume-medium.png b/images/tango/16x16/status/audio-volume-medium.png new file mode 100644 index 0000000..36ca7b0 Binary files /dev/null and b/images/tango/16x16/status/audio-volume-medium.png differ diff --git a/images/tango/16x16/status/audio-volume-muted.png b/images/tango/16x16/status/audio-volume-muted.png new file mode 100644 index 0000000..af5a97b Binary files /dev/null and b/images/tango/16x16/status/audio-volume-muted.png differ diff --git a/images/tango/16x16/status/battery-caution.png b/images/tango/16x16/status/battery-caution.png new file mode 100644 index 0000000..53a27d1 Binary files /dev/null and b/images/tango/16x16/status/battery-caution.png differ diff --git a/images/tango/16x16/status/dialog-error.png b/images/tango/16x16/status/dialog-error.png new file mode 100644 index 0000000..3bbbb4a Binary files /dev/null and b/images/tango/16x16/status/dialog-error.png differ diff --git a/images/tango/16x16/status/dialog-information.png b/images/tango/16x16/status/dialog-information.png new file mode 100644 index 0000000..8851b99 Binary files /dev/null and b/images/tango/16x16/status/dialog-information.png differ diff --git a/images/tango/16x16/status/dialog-warning.png b/images/tango/16x16/status/dialog-warning.png new file mode 100644 index 0000000..a9e4ff3 Binary files /dev/null and b/images/tango/16x16/status/dialog-warning.png differ diff --git a/images/tango/16x16/status/folder-drag-accept.png b/images/tango/16x16/status/folder-drag-accept.png new file mode 100644 index 0000000..44055dc Binary files /dev/null and b/images/tango/16x16/status/folder-drag-accept.png differ diff --git a/images/tango/16x16/status/folder-open.png b/images/tango/16x16/status/folder-open.png new file mode 100644 index 0000000..b67403d Binary files /dev/null and b/images/tango/16x16/status/folder-open.png differ diff --git a/images/tango/16x16/status/folder-visiting.png b/images/tango/16x16/status/folder-visiting.png new file mode 100644 index 0000000..9002444 Binary files /dev/null and b/images/tango/16x16/status/folder-visiting.png differ diff --git a/images/tango/16x16/status/image-loading.png b/images/tango/16x16/status/image-loading.png new file mode 100644 index 0000000..174994e Binary files /dev/null and b/images/tango/16x16/status/image-loading.png differ diff --git a/images/tango/16x16/status/image-missing.png b/images/tango/16x16/status/image-missing.png new file mode 100644 index 0000000..a644f24 Binary files /dev/null and b/images/tango/16x16/status/image-missing.png differ diff --git a/images/tango/16x16/status/mail-attachment.png b/images/tango/16x16/status/mail-attachment.png new file mode 100644 index 0000000..529bb7f Binary files /dev/null and b/images/tango/16x16/status/mail-attachment.png differ diff --git a/images/tango/16x16/status/network-error.png b/images/tango/16x16/status/network-error.png new file mode 100644 index 0000000..3f18ed0 Binary files /dev/null and b/images/tango/16x16/status/network-error.png differ diff --git a/images/tango/16x16/status/network-idle.png b/images/tango/16x16/status/network-idle.png new file mode 100644 index 0000000..0efee57 Binary files /dev/null and b/images/tango/16x16/status/network-idle.png differ diff --git a/images/tango/16x16/status/network-offline.png b/images/tango/16x16/status/network-offline.png new file mode 100644 index 0000000..1f210fc Binary files /dev/null and b/images/tango/16x16/status/network-offline.png differ diff --git a/images/tango/16x16/status/network-receive.png b/images/tango/16x16/status/network-receive.png new file mode 100644 index 0000000..b57c65c Binary files /dev/null and b/images/tango/16x16/status/network-receive.png differ diff --git a/images/tango/16x16/status/network-transmit-receive.png b/images/tango/16x16/status/network-transmit-receive.png new file mode 100644 index 0000000..271d37d Binary files /dev/null and b/images/tango/16x16/status/network-transmit-receive.png differ diff --git a/images/tango/16x16/status/network-transmit.png b/images/tango/16x16/status/network-transmit.png new file mode 100644 index 0000000..08aa28b Binary files /dev/null and b/images/tango/16x16/status/network-transmit.png differ diff --git a/images/tango/16x16/status/network-wireless-encrypted.png b/images/tango/16x16/status/network-wireless-encrypted.png new file mode 100644 index 0000000..c73e33c Binary files /dev/null and b/images/tango/16x16/status/network-wireless-encrypted.png differ diff --git a/images/tango/16x16/status/printer-error.png b/images/tango/16x16/status/printer-error.png new file mode 100644 index 0000000..21d4ded Binary files /dev/null and b/images/tango/16x16/status/printer-error.png differ diff --git a/images/tango/16x16/status/software-update-available.png b/images/tango/16x16/status/software-update-available.png new file mode 100644 index 0000000..ab8d494 Binary files /dev/null and b/images/tango/16x16/status/software-update-available.png differ diff --git a/images/tango/16x16/status/software-update-urgent.png b/images/tango/16x16/status/software-update-urgent.png new file mode 100644 index 0000000..433945d Binary files /dev/null and b/images/tango/16x16/status/software-update-urgent.png differ diff --git a/images/tango/16x16/status/user-trash-full.png b/images/tango/16x16/status/user-trash-full.png new file mode 100644 index 0000000..695d215 Binary files /dev/null and b/images/tango/16x16/status/user-trash-full.png differ diff --git a/images/tango/16x16/status/weather-clear-night.png b/images/tango/16x16/status/weather-clear-night.png new file mode 100644 index 0000000..4345752 Binary files /dev/null and b/images/tango/16x16/status/weather-clear-night.png differ diff --git a/images/tango/16x16/status/weather-clear.png b/images/tango/16x16/status/weather-clear.png new file mode 100644 index 0000000..7dc15ea Binary files /dev/null and b/images/tango/16x16/status/weather-clear.png differ diff --git a/images/tango/16x16/status/weather-few-clouds-night.png b/images/tango/16x16/status/weather-few-clouds-night.png new file mode 100644 index 0000000..d69efec Binary files /dev/null and b/images/tango/16x16/status/weather-few-clouds-night.png differ diff --git a/images/tango/16x16/status/weather-few-clouds.png b/images/tango/16x16/status/weather-few-clouds.png new file mode 100644 index 0000000..0e633a3 Binary files /dev/null and b/images/tango/16x16/status/weather-few-clouds.png differ diff --git a/images/tango/16x16/status/weather-overcast.png b/images/tango/16x16/status/weather-overcast.png new file mode 100644 index 0000000..0045129 Binary files /dev/null and b/images/tango/16x16/status/weather-overcast.png differ diff --git a/images/tango/16x16/status/weather-severe-alert.png b/images/tango/16x16/status/weather-severe-alert.png new file mode 100644 index 0000000..98e9f6c Binary files /dev/null and b/images/tango/16x16/status/weather-severe-alert.png differ diff --git a/images/tango/16x16/status/weather-showers-scattered.png b/images/tango/16x16/status/weather-showers-scattered.png new file mode 100644 index 0000000..8d10d84 Binary files /dev/null and b/images/tango/16x16/status/weather-showers-scattered.png differ diff --git a/images/tango/16x16/status/weather-showers.png b/images/tango/16x16/status/weather-showers.png new file mode 100644 index 0000000..d9685d2 Binary files /dev/null and b/images/tango/16x16/status/weather-showers.png differ diff --git a/images/tango/16x16/status/weather-snow.png b/images/tango/16x16/status/weather-snow.png new file mode 100644 index 0000000..a83d855 Binary files /dev/null and b/images/tango/16x16/status/weather-snow.png differ diff --git a/images/tango/16x16/status/weather-storm.png b/images/tango/16x16/status/weather-storm.png new file mode 100644 index 0000000..feebe1d Binary files /dev/null and b/images/tango/16x16/status/weather-storm.png differ diff --git a/images/tango/22x22/actions/address-book-new.png b/images/tango/22x22/actions/address-book-new.png new file mode 100644 index 0000000..fad446c Binary files /dev/null and b/images/tango/22x22/actions/address-book-new.png differ diff --git a/images/tango/22x22/actions/appointment-new.png b/images/tango/22x22/actions/appointment-new.png new file mode 100644 index 0000000..d676ffd Binary files /dev/null and b/images/tango/22x22/actions/appointment-new.png differ diff --git a/images/tango/22x22/actions/bookmark-new.png b/images/tango/22x22/actions/bookmark-new.png new file mode 100644 index 0000000..3ec0300 Binary files /dev/null and b/images/tango/22x22/actions/bookmark-new.png differ diff --git a/images/tango/22x22/actions/contact-new.png b/images/tango/22x22/actions/contact-new.png new file mode 100644 index 0000000..c9921be Binary files /dev/null and b/images/tango/22x22/actions/contact-new.png differ diff --git a/images/tango/22x22/actions/document-new.png b/images/tango/22x22/actions/document-new.png new file mode 100644 index 0000000..e3808a1 Binary files /dev/null and b/images/tango/22x22/actions/document-new.png differ diff --git a/images/tango/22x22/actions/document-open.png b/images/tango/22x22/actions/document-open.png new file mode 100644 index 0000000..254a6b8 Binary files /dev/null and b/images/tango/22x22/actions/document-open.png differ diff --git a/images/tango/22x22/actions/document-pdf.png b/images/tango/22x22/actions/document-pdf.png new file mode 100644 index 0000000..033a703 Binary files /dev/null and b/images/tango/22x22/actions/document-pdf.png differ diff --git a/images/tango/22x22/actions/document-print-preview.png b/images/tango/22x22/actions/document-print-preview.png new file mode 100644 index 0000000..75f43aa Binary files /dev/null and b/images/tango/22x22/actions/document-print-preview.png differ diff --git a/images/tango/22x22/actions/document-print.png b/images/tango/22x22/actions/document-print.png new file mode 100644 index 0000000..52dd67e Binary files /dev/null and b/images/tango/22x22/actions/document-print.png differ diff --git a/images/tango/22x22/actions/document-properties.png b/images/tango/22x22/actions/document-properties.png new file mode 100644 index 0000000..a5ad728 Binary files /dev/null and b/images/tango/22x22/actions/document-properties.png differ diff --git a/images/tango/22x22/actions/document-revert.png b/images/tango/22x22/actions/document-revert.png new file mode 100644 index 0000000..529abcb Binary files /dev/null and b/images/tango/22x22/actions/document-revert.png differ diff --git a/images/tango/22x22/actions/document-save-as.png b/images/tango/22x22/actions/document-save-as.png new file mode 100644 index 0000000..340a87e Binary files /dev/null and b/images/tango/22x22/actions/document-save-as.png differ diff --git a/images/tango/22x22/actions/document-save.png b/images/tango/22x22/actions/document-save.png new file mode 100644 index 0000000..a94e0ea Binary files /dev/null and b/images/tango/22x22/actions/document-save.png differ diff --git a/images/tango/22x22/actions/edit-clear.png b/images/tango/22x22/actions/edit-clear.png new file mode 100644 index 0000000..bbc77eb Binary files /dev/null and b/images/tango/22x22/actions/edit-clear.png differ diff --git a/images/tango/22x22/actions/edit-copy.png b/images/tango/22x22/actions/edit-copy.png new file mode 100644 index 0000000..345b2f1 Binary files /dev/null and b/images/tango/22x22/actions/edit-copy.png differ diff --git a/images/tango/22x22/actions/edit-cut.png b/images/tango/22x22/actions/edit-cut.png new file mode 100644 index 0000000..7017d1b Binary files /dev/null and b/images/tango/22x22/actions/edit-cut.png differ diff --git a/images/tango/22x22/actions/edit-delete.png b/images/tango/22x22/actions/edit-delete.png new file mode 100644 index 0000000..3811b64 Binary files /dev/null and b/images/tango/22x22/actions/edit-delete.png differ diff --git a/images/tango/22x22/actions/edit-find-replace.png b/images/tango/22x22/actions/edit-find-replace.png new file mode 100644 index 0000000..de3a75f Binary files /dev/null and b/images/tango/22x22/actions/edit-find-replace.png differ diff --git a/images/tango/22x22/actions/edit-find.png b/images/tango/22x22/actions/edit-find.png new file mode 100644 index 0000000..4f078cb Binary files /dev/null and b/images/tango/22x22/actions/edit-find.png differ diff --git a/images/tango/22x22/actions/edit-paste.png b/images/tango/22x22/actions/edit-paste.png new file mode 100644 index 0000000..f6a625c Binary files /dev/null and b/images/tango/22x22/actions/edit-paste.png differ diff --git a/images/tango/22x22/actions/edit-redo.png b/images/tango/22x22/actions/edit-redo.png new file mode 100644 index 0000000..576cfc7 Binary files /dev/null and b/images/tango/22x22/actions/edit-redo.png differ diff --git a/images/tango/22x22/actions/edit-select-all.png b/images/tango/22x22/actions/edit-select-all.png new file mode 100644 index 0000000..e6331c6 Binary files /dev/null and b/images/tango/22x22/actions/edit-select-all.png differ diff --git a/images/tango/22x22/actions/edit-undo.png b/images/tango/22x22/actions/edit-undo.png new file mode 100644 index 0000000..f37c696 Binary files /dev/null and b/images/tango/22x22/actions/edit-undo.png differ diff --git a/images/tango/22x22/actions/folder-new.png b/images/tango/22x22/actions/folder-new.png new file mode 100644 index 0000000..1c3dc94 Binary files /dev/null and b/images/tango/22x22/actions/folder-new.png differ diff --git a/images/tango/22x22/actions/format-indent-less.png b/images/tango/22x22/actions/format-indent-less.png new file mode 100644 index 0000000..5292012 Binary files /dev/null and b/images/tango/22x22/actions/format-indent-less.png differ diff --git a/images/tango/22x22/actions/format-indent-more.png b/images/tango/22x22/actions/format-indent-more.png new file mode 100644 index 0000000..ad2b527 Binary files /dev/null and b/images/tango/22x22/actions/format-indent-more.png differ diff --git a/images/tango/22x22/actions/format-justify-center.png b/images/tango/22x22/actions/format-justify-center.png new file mode 100644 index 0000000..0777a9a Binary files /dev/null and b/images/tango/22x22/actions/format-justify-center.png differ diff --git a/images/tango/22x22/actions/format-justify-fill.png b/images/tango/22x22/actions/format-justify-fill.png new file mode 100644 index 0000000..0ce4013 Binary files /dev/null and b/images/tango/22x22/actions/format-justify-fill.png differ diff --git a/images/tango/22x22/actions/format-justify-left.png b/images/tango/22x22/actions/format-justify-left.png new file mode 100644 index 0000000..a8e1ca8 Binary files /dev/null and b/images/tango/22x22/actions/format-justify-left.png differ diff --git a/images/tango/22x22/actions/format-justify-right.png b/images/tango/22x22/actions/format-justify-right.png new file mode 100644 index 0000000..8228d81 Binary files /dev/null and b/images/tango/22x22/actions/format-justify-right.png differ diff --git a/images/tango/22x22/actions/format-text-bold.png b/images/tango/22x22/actions/format-text-bold.png new file mode 100644 index 0000000..7166e3d Binary files /dev/null and b/images/tango/22x22/actions/format-text-bold.png differ diff --git a/images/tango/22x22/actions/format-text-italic.png b/images/tango/22x22/actions/format-text-italic.png new file mode 100644 index 0000000..ef68fb3 Binary files /dev/null and b/images/tango/22x22/actions/format-text-italic.png differ diff --git a/images/tango/22x22/actions/format-text-strikethrough.png b/images/tango/22x22/actions/format-text-strikethrough.png new file mode 100644 index 0000000..e4ca573 Binary files /dev/null and b/images/tango/22x22/actions/format-text-strikethrough.png differ diff --git a/images/tango/22x22/actions/format-text-underline.png b/images/tango/22x22/actions/format-text-underline.png new file mode 100644 index 0000000..d33422b Binary files /dev/null and b/images/tango/22x22/actions/format-text-underline.png differ diff --git a/images/tango/22x22/actions/go-bottom.png b/images/tango/22x22/actions/go-bottom.png new file mode 100644 index 0000000..d81e071 Binary files /dev/null and b/images/tango/22x22/actions/go-bottom.png differ diff --git a/images/tango/22x22/actions/go-down.png b/images/tango/22x22/actions/go-down.png new file mode 100644 index 0000000..af23788 Binary files /dev/null and b/images/tango/22x22/actions/go-down.png differ diff --git a/images/tango/22x22/actions/go-first.png b/images/tango/22x22/actions/go-first.png new file mode 100644 index 0000000..bf0d8f2 Binary files /dev/null and b/images/tango/22x22/actions/go-first.png differ diff --git a/images/tango/22x22/actions/go-home.png b/images/tango/22x22/actions/go-home.png new file mode 100644 index 0000000..9d62109 Binary files /dev/null and b/images/tango/22x22/actions/go-home.png differ diff --git a/images/tango/22x22/actions/go-jump.png b/images/tango/22x22/actions/go-jump.png new file mode 100644 index 0000000..373dce9 Binary files /dev/null and b/images/tango/22x22/actions/go-jump.png differ diff --git a/images/tango/22x22/actions/go-last.png b/images/tango/22x22/actions/go-last.png new file mode 100644 index 0000000..32df45d Binary files /dev/null and b/images/tango/22x22/actions/go-last.png differ diff --git a/images/tango/22x22/actions/go-next.png b/images/tango/22x22/actions/go-next.png new file mode 100644 index 0000000..6f3f65d Binary files /dev/null and b/images/tango/22x22/actions/go-next.png differ diff --git a/images/tango/22x22/actions/go-previous.png b/images/tango/22x22/actions/go-previous.png new file mode 100644 index 0000000..93be3d1 Binary files /dev/null and b/images/tango/22x22/actions/go-previous.png differ diff --git a/images/tango/22x22/actions/go-top.png b/images/tango/22x22/actions/go-top.png new file mode 100644 index 0000000..96f98dd Binary files /dev/null and b/images/tango/22x22/actions/go-top.png differ diff --git a/images/tango/22x22/actions/go-up.png b/images/tango/22x22/actions/go-up.png new file mode 100644 index 0000000..b0a0cd7 Binary files /dev/null and b/images/tango/22x22/actions/go-up.png differ diff --git a/images/tango/22x22/actions/list-add.png b/images/tango/22x22/actions/list-add.png new file mode 100644 index 0000000..306d3d8 Binary files /dev/null and b/images/tango/22x22/actions/list-add.png differ diff --git a/images/tango/22x22/actions/list-remove.png b/images/tango/22x22/actions/list-remove.png new file mode 100644 index 0000000..45e5c2a Binary files /dev/null and b/images/tango/22x22/actions/list-remove.png differ diff --git a/images/tango/22x22/actions/mail-forward.png b/images/tango/22x22/actions/mail-forward.png new file mode 100644 index 0000000..51aa0b4 Binary files /dev/null and b/images/tango/22x22/actions/mail-forward.png differ diff --git a/images/tango/22x22/actions/mail-mark-junk.png b/images/tango/22x22/actions/mail-mark-junk.png new file mode 100644 index 0000000..f980138 Binary files /dev/null and b/images/tango/22x22/actions/mail-mark-junk.png differ diff --git a/images/tango/22x22/actions/mail-mark-not-junk.png b/images/tango/22x22/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..da6fb95 Binary files /dev/null and b/images/tango/22x22/actions/mail-mark-not-junk.png differ diff --git a/images/tango/22x22/actions/mail-message-new.png b/images/tango/22x22/actions/mail-message-new.png new file mode 100644 index 0000000..96ae0e9 Binary files /dev/null and b/images/tango/22x22/actions/mail-message-new.png differ diff --git a/images/tango/22x22/actions/mail-reply-all.png b/images/tango/22x22/actions/mail-reply-all.png new file mode 100644 index 0000000..c158a72 Binary files /dev/null and b/images/tango/22x22/actions/mail-reply-all.png differ diff --git a/images/tango/22x22/actions/mail-reply-sender.png b/images/tango/22x22/actions/mail-reply-sender.png new file mode 100644 index 0000000..4f077a1 Binary files /dev/null and b/images/tango/22x22/actions/mail-reply-sender.png differ diff --git a/images/tango/22x22/actions/mail-send-receive.png b/images/tango/22x22/actions/mail-send-receive.png new file mode 100644 index 0000000..69e8272 Binary files /dev/null and b/images/tango/22x22/actions/mail-send-receive.png differ diff --git a/images/tango/22x22/actions/media-eject.png b/images/tango/22x22/actions/media-eject.png new file mode 100644 index 0000000..5a232e6 Binary files /dev/null and b/images/tango/22x22/actions/media-eject.png differ diff --git a/images/tango/22x22/actions/media-playback-pause.png b/images/tango/22x22/actions/media-playback-pause.png new file mode 100644 index 0000000..ee40fc2 Binary files /dev/null and b/images/tango/22x22/actions/media-playback-pause.png differ diff --git a/images/tango/22x22/actions/media-playback-start.png b/images/tango/22x22/actions/media-playback-start.png new file mode 100644 index 0000000..10102d8 Binary files /dev/null and b/images/tango/22x22/actions/media-playback-start.png differ diff --git a/images/tango/22x22/actions/media-playback-stop.png b/images/tango/22x22/actions/media-playback-stop.png new file mode 100644 index 0000000..d0e4733 Binary files /dev/null and b/images/tango/22x22/actions/media-playback-stop.png differ diff --git a/images/tango/22x22/actions/media-record.png b/images/tango/22x22/actions/media-record.png new file mode 100644 index 0000000..fb53e14 Binary files /dev/null and b/images/tango/22x22/actions/media-record.png differ diff --git a/images/tango/22x22/actions/media-seek-backward.png b/images/tango/22x22/actions/media-seek-backward.png new file mode 100644 index 0000000..e094d12 Binary files /dev/null and b/images/tango/22x22/actions/media-seek-backward.png differ diff --git a/images/tango/22x22/actions/media-seek-forward.png b/images/tango/22x22/actions/media-seek-forward.png new file mode 100644 index 0000000..b9c2c6c Binary files /dev/null and b/images/tango/22x22/actions/media-seek-forward.png differ diff --git a/images/tango/22x22/actions/media-skip-backward.png b/images/tango/22x22/actions/media-skip-backward.png new file mode 100644 index 0000000..2a5e703 Binary files /dev/null and b/images/tango/22x22/actions/media-skip-backward.png differ diff --git a/images/tango/22x22/actions/media-skip-forward.png b/images/tango/22x22/actions/media-skip-forward.png new file mode 100644 index 0000000..28bca3e Binary files /dev/null and b/images/tango/22x22/actions/media-skip-forward.png differ diff --git a/images/tango/22x22/actions/process-stop.png b/images/tango/22x22/actions/process-stop.png new file mode 100644 index 0000000..b68290b Binary files /dev/null and b/images/tango/22x22/actions/process-stop.png differ diff --git a/images/tango/22x22/actions/system-lock-screen.png b/images/tango/22x22/actions/system-lock-screen.png new file mode 100644 index 0000000..dc6b825 Binary files /dev/null and b/images/tango/22x22/actions/system-lock-screen.png differ diff --git a/images/tango/22x22/actions/system-log-out.png b/images/tango/22x22/actions/system-log-out.png new file mode 100644 index 0000000..28ac66f Binary files /dev/null and b/images/tango/22x22/actions/system-log-out.png differ diff --git a/images/tango/22x22/actions/system-search.png b/images/tango/22x22/actions/system-search.png new file mode 100644 index 0000000..4e522b2 Binary files /dev/null and b/images/tango/22x22/actions/system-search.png differ diff --git a/images/tango/22x22/actions/system-shutdown.png b/images/tango/22x22/actions/system-shutdown.png new file mode 100644 index 0000000..0c2a2d1 Binary files /dev/null and b/images/tango/22x22/actions/system-shutdown.png differ diff --git a/images/tango/22x22/actions/tab-new.png b/images/tango/22x22/actions/tab-new.png new file mode 100644 index 0000000..c7c7cf2 Binary files /dev/null and b/images/tango/22x22/actions/tab-new.png differ diff --git a/images/tango/22x22/actions/view-fullscreen.png b/images/tango/22x22/actions/view-fullscreen.png new file mode 100644 index 0000000..6f0f292 Binary files /dev/null and b/images/tango/22x22/actions/view-fullscreen.png differ diff --git a/images/tango/22x22/actions/view-refresh.png b/images/tango/22x22/actions/view-refresh.png new file mode 100644 index 0000000..cab4d02 Binary files /dev/null and b/images/tango/22x22/actions/view-refresh.png differ diff --git a/images/tango/22x22/actions/window-new.png b/images/tango/22x22/actions/window-new.png new file mode 100644 index 0000000..314f997 Binary files /dev/null and b/images/tango/22x22/actions/window-new.png differ diff --git a/images/tango/22x22/animations/process-working.png b/images/tango/22x22/animations/process-working.png new file mode 100644 index 0000000..9005de7 Binary files /dev/null and b/images/tango/22x22/animations/process-working.png differ diff --git a/images/tango/22x22/apps/accessories-calculator.png b/images/tango/22x22/apps/accessories-calculator.png new file mode 100644 index 0000000..e12d465 Binary files /dev/null and b/images/tango/22x22/apps/accessories-calculator.png differ diff --git a/images/tango/22x22/apps/accessories-character-map.png b/images/tango/22x22/apps/accessories-character-map.png new file mode 100644 index 0000000..e630c7e Binary files /dev/null and b/images/tango/22x22/apps/accessories-character-map.png differ diff --git a/images/tango/22x22/apps/accessories-text-editor.png b/images/tango/22x22/apps/accessories-text-editor.png new file mode 100644 index 0000000..c3d245d Binary files /dev/null and b/images/tango/22x22/apps/accessories-text-editor.png differ diff --git a/images/tango/22x22/apps/help-browser.png b/images/tango/22x22/apps/help-browser.png new file mode 100644 index 0000000..c67c7a6 Binary files /dev/null and b/images/tango/22x22/apps/help-browser.png differ diff --git a/images/tango/22x22/apps/internet-group-chat.png b/images/tango/22x22/apps/internet-group-chat.png new file mode 100644 index 0000000..3cac5df Binary files /dev/null and b/images/tango/22x22/apps/internet-group-chat.png differ diff --git a/images/tango/22x22/apps/internet-mail.png b/images/tango/22x22/apps/internet-mail.png new file mode 100644 index 0000000..68fc82e Binary files /dev/null and b/images/tango/22x22/apps/internet-mail.png differ diff --git a/images/tango/22x22/apps/internet-news-reader.png b/images/tango/22x22/apps/internet-news-reader.png new file mode 100644 index 0000000..43950eb Binary files /dev/null and b/images/tango/22x22/apps/internet-news-reader.png differ diff --git a/images/tango/22x22/apps/internet-web-browser.png b/images/tango/22x22/apps/internet-web-browser.png new file mode 100644 index 0000000..4125479 Binary files /dev/null and b/images/tango/22x22/apps/internet-web-browser.png differ diff --git a/images/tango/22x22/apps/office-calendar.png b/images/tango/22x22/apps/office-calendar.png new file mode 100644 index 0000000..60ad82b Binary files /dev/null and b/images/tango/22x22/apps/office-calendar.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-accessibility.png b/images/tango/22x22/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..919d735 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-accessibility.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-assistive-technology.png b/images/tango/22x22/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..483e4a6 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-font.png b/images/tango/22x22/apps/preferences-desktop-font.png new file mode 100644 index 0000000..d452db7 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-font.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png b/images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..c3e1328 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-locale.png b/images/tango/22x22/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..ed0480b Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-locale.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-multimedia.png b/images/tango/22x22/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..e1bdf85 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-multimedia.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-remote-desktop.png b/images/tango/22x22/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..d25792b Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-screensaver.png b/images/tango/22x22/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..619e196 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-screensaver.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-theme.png b/images/tango/22x22/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..7b5f0ba Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-theme.png differ diff --git a/images/tango/22x22/apps/preferences-desktop-wallpaper.png b/images/tango/22x22/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..3389e55 Binary files /dev/null and b/images/tango/22x22/apps/preferences-desktop-wallpaper.png differ diff --git a/images/tango/22x22/apps/preferences-system-network-proxy.png b/images/tango/22x22/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..bec24de Binary files /dev/null and b/images/tango/22x22/apps/preferences-system-network-proxy.png differ diff --git a/images/tango/22x22/apps/preferences-system-session.png b/images/tango/22x22/apps/preferences-system-session.png new file mode 100644 index 0000000..9a09875 Binary files /dev/null and b/images/tango/22x22/apps/preferences-system-session.png differ diff --git a/images/tango/22x22/apps/preferences-system-windows.png b/images/tango/22x22/apps/preferences-system-windows.png new file mode 100644 index 0000000..2caa205 Binary files /dev/null and b/images/tango/22x22/apps/preferences-system-windows.png differ diff --git a/images/tango/22x22/apps/system-file-manager.png b/images/tango/22x22/apps/system-file-manager.png new file mode 100644 index 0000000..44d6310 Binary files /dev/null and b/images/tango/22x22/apps/system-file-manager.png differ diff --git a/images/tango/22x22/apps/system-installer.png b/images/tango/22x22/apps/system-installer.png new file mode 100644 index 0000000..b75c6b1 Binary files /dev/null and b/images/tango/22x22/apps/system-installer.png differ diff --git a/images/tango/22x22/apps/system-software-update.png b/images/tango/22x22/apps/system-software-update.png new file mode 100644 index 0000000..5f7a362 Binary files /dev/null and b/images/tango/22x22/apps/system-software-update.png differ diff --git a/images/tango/22x22/apps/system-users.png b/images/tango/22x22/apps/system-users.png new file mode 100644 index 0000000..bced28c Binary files /dev/null and b/images/tango/22x22/apps/system-users.png differ diff --git a/images/tango/22x22/apps/utilities-system-monitor.png b/images/tango/22x22/apps/utilities-system-monitor.png new file mode 100644 index 0000000..f2d266f Binary files /dev/null and b/images/tango/22x22/apps/utilities-system-monitor.png differ diff --git a/images/tango/22x22/apps/utilities-terminal.png b/images/tango/22x22/apps/utilities-terminal.png new file mode 100644 index 0000000..ceb0fb9 Binary files /dev/null and b/images/tango/22x22/apps/utilities-terminal.png differ diff --git a/images/tango/22x22/categories/applications-accessories.png b/images/tango/22x22/categories/applications-accessories.png new file mode 100644 index 0000000..f619403 Binary files /dev/null and b/images/tango/22x22/categories/applications-accessories.png differ diff --git a/images/tango/22x22/categories/applications-development.png b/images/tango/22x22/categories/applications-development.png new file mode 100644 index 0000000..8ef08e2 Binary files /dev/null and b/images/tango/22x22/categories/applications-development.png differ diff --git a/images/tango/22x22/categories/applications-games.png b/images/tango/22x22/categories/applications-games.png new file mode 100644 index 0000000..cc78378 Binary files /dev/null and b/images/tango/22x22/categories/applications-games.png differ diff --git a/images/tango/22x22/categories/applications-graphics.png b/images/tango/22x22/categories/applications-graphics.png new file mode 100644 index 0000000..ca883da Binary files /dev/null and b/images/tango/22x22/categories/applications-graphics.png differ diff --git a/images/tango/22x22/categories/applications-internet.png b/images/tango/22x22/categories/applications-internet.png new file mode 100644 index 0000000..d4bfb82 Binary files /dev/null and b/images/tango/22x22/categories/applications-internet.png differ diff --git a/images/tango/22x22/categories/applications-multimedia.png b/images/tango/22x22/categories/applications-multimedia.png new file mode 100644 index 0000000..ae2d28c Binary files /dev/null and b/images/tango/22x22/categories/applications-multimedia.png differ diff --git a/images/tango/22x22/categories/applications-office.png b/images/tango/22x22/categories/applications-office.png new file mode 100644 index 0000000..7e3be9b Binary files /dev/null and b/images/tango/22x22/categories/applications-office.png differ diff --git a/images/tango/22x22/categories/applications-other.png b/images/tango/22x22/categories/applications-other.png new file mode 100644 index 0000000..308acb2 Binary files /dev/null and b/images/tango/22x22/categories/applications-other.png differ diff --git a/images/tango/22x22/categories/applications-system.png b/images/tango/22x22/categories/applications-system.png new file mode 100644 index 0000000..4decc89 Binary files /dev/null and b/images/tango/22x22/categories/applications-system.png differ diff --git a/images/tango/22x22/categories/preferences-desktop-peripherals.png b/images/tango/22x22/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..985bcde Binary files /dev/null and b/images/tango/22x22/categories/preferences-desktop-peripherals.png differ diff --git a/images/tango/22x22/categories/preferences-desktop.png b/images/tango/22x22/categories/preferences-desktop.png new file mode 100644 index 0000000..c359063 Binary files /dev/null and b/images/tango/22x22/categories/preferences-desktop.png differ diff --git a/images/tango/22x22/categories/preferences-system.png b/images/tango/22x22/categories/preferences-system.png new file mode 100644 index 0000000..cc91d65 Binary files /dev/null and b/images/tango/22x22/categories/preferences-system.png differ diff --git a/images/tango/22x22/devices/audio-card.png b/images/tango/22x22/devices/audio-card.png new file mode 100644 index 0000000..93d99aa Binary files /dev/null and b/images/tango/22x22/devices/audio-card.png differ diff --git a/images/tango/22x22/devices/audio-input-microphone.png b/images/tango/22x22/devices/audio-input-microphone.png new file mode 100644 index 0000000..496d244 Binary files /dev/null and b/images/tango/22x22/devices/audio-input-microphone.png differ diff --git a/images/tango/22x22/devices/battery.png b/images/tango/22x22/devices/battery.png new file mode 100644 index 0000000..ad45674 Binary files /dev/null and b/images/tango/22x22/devices/battery.png differ diff --git a/images/tango/22x22/devices/camera-photo.png b/images/tango/22x22/devices/camera-photo.png new file mode 100644 index 0000000..8d28baf Binary files /dev/null and b/images/tango/22x22/devices/camera-photo.png differ diff --git a/images/tango/22x22/devices/camera-video.png b/images/tango/22x22/devices/camera-video.png new file mode 100644 index 0000000..e84992c Binary files /dev/null and b/images/tango/22x22/devices/camera-video.png differ diff --git a/images/tango/22x22/devices/computer.png b/images/tango/22x22/devices/computer.png new file mode 100644 index 0000000..b6e6b39 Binary files /dev/null and b/images/tango/22x22/devices/computer.png differ diff --git a/images/tango/22x22/devices/drive-harddisk.png b/images/tango/22x22/devices/drive-harddisk.png new file mode 100644 index 0000000..da41305 Binary files /dev/null and b/images/tango/22x22/devices/drive-harddisk.png differ diff --git a/images/tango/22x22/devices/drive-optical.png b/images/tango/22x22/devices/drive-optical.png new file mode 100644 index 0000000..af2c826 Binary files /dev/null and b/images/tango/22x22/devices/drive-optical.png differ diff --git a/images/tango/22x22/devices/drive-removable-media.png b/images/tango/22x22/devices/drive-removable-media.png new file mode 100644 index 0000000..f487310 Binary files /dev/null and b/images/tango/22x22/devices/drive-removable-media.png differ diff --git a/images/tango/22x22/devices/input-gaming.png b/images/tango/22x22/devices/input-gaming.png new file mode 100644 index 0000000..18f7739 Binary files /dev/null and b/images/tango/22x22/devices/input-gaming.png differ diff --git a/images/tango/22x22/devices/input-keyboard.png b/images/tango/22x22/devices/input-keyboard.png new file mode 100644 index 0000000..6ffb232 Binary files /dev/null and b/images/tango/22x22/devices/input-keyboard.png differ diff --git a/images/tango/22x22/devices/input-mouse.png b/images/tango/22x22/devices/input-mouse.png new file mode 100644 index 0000000..c1bbc79 Binary files /dev/null and b/images/tango/22x22/devices/input-mouse.png differ diff --git a/images/tango/22x22/devices/media-flash.png b/images/tango/22x22/devices/media-flash.png new file mode 100644 index 0000000..c6a2d0c Binary files /dev/null and b/images/tango/22x22/devices/media-flash.png differ diff --git a/images/tango/22x22/devices/media-floppy.png b/images/tango/22x22/devices/media-floppy.png new file mode 100644 index 0000000..af79de8 Binary files /dev/null and b/images/tango/22x22/devices/media-floppy.png differ diff --git a/images/tango/22x22/devices/media-optical.png b/images/tango/22x22/devices/media-optical.png new file mode 100644 index 0000000..e86bfa3 Binary files /dev/null and b/images/tango/22x22/devices/media-optical.png differ diff --git a/images/tango/22x22/devices/multimedia-player.png b/images/tango/22x22/devices/multimedia-player.png new file mode 100644 index 0000000..8be0228 Binary files /dev/null and b/images/tango/22x22/devices/multimedia-player.png differ diff --git a/images/tango/22x22/devices/network-wired.png b/images/tango/22x22/devices/network-wired.png new file mode 100644 index 0000000..51c8b16 Binary files /dev/null and b/images/tango/22x22/devices/network-wired.png differ diff --git a/images/tango/22x22/devices/network-wireless.png b/images/tango/22x22/devices/network-wireless.png new file mode 100644 index 0000000..2d7851f Binary files /dev/null and b/images/tango/22x22/devices/network-wireless.png differ diff --git a/images/tango/22x22/devices/printer.png b/images/tango/22x22/devices/printer.png new file mode 100644 index 0000000..65caccf Binary files /dev/null and b/images/tango/22x22/devices/printer.png differ diff --git a/images/tango/22x22/devices/video-display.png b/images/tango/22x22/devices/video-display.png new file mode 100644 index 0000000..f244adb Binary files /dev/null and b/images/tango/22x22/devices/video-display.png differ diff --git a/images/tango/22x22/emblems/emblem-favorite.png b/images/tango/22x22/emblems/emblem-favorite.png new file mode 100644 index 0000000..9b3d7ac Binary files /dev/null and b/images/tango/22x22/emblems/emblem-favorite.png differ diff --git a/images/tango/22x22/emblems/emblem-important.png b/images/tango/22x22/emblems/emblem-important.png new file mode 100644 index 0000000..0437a0d Binary files /dev/null and b/images/tango/22x22/emblems/emblem-important.png differ diff --git a/images/tango/22x22/emblems/emblem-photos.png b/images/tango/22x22/emblems/emblem-photos.png new file mode 100644 index 0000000..b8b1c63 Binary files /dev/null and b/images/tango/22x22/emblems/emblem-photos.png differ diff --git a/images/tango/22x22/emblems/emblem-readonly.png b/images/tango/22x22/emblems/emblem-readonly.png new file mode 100644 index 0000000..33896d9 Binary files /dev/null and b/images/tango/22x22/emblems/emblem-readonly.png differ diff --git a/images/tango/22x22/emblems/emblem-symbolic-link.png b/images/tango/22x22/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..d02781d Binary files /dev/null and b/images/tango/22x22/emblems/emblem-symbolic-link.png differ diff --git a/images/tango/22x22/emblems/emblem-system.png b/images/tango/22x22/emblems/emblem-system.png new file mode 100644 index 0000000..1f2b3b3 Binary files /dev/null and b/images/tango/22x22/emblems/emblem-system.png differ diff --git a/images/tango/22x22/emblems/emblem-unreadable.png b/images/tango/22x22/emblems/emblem-unreadable.png new file mode 100644 index 0000000..6a88bdb Binary files /dev/null and b/images/tango/22x22/emblems/emblem-unreadable.png differ diff --git a/images/tango/22x22/emotes/face-angel.png b/images/tango/22x22/emotes/face-angel.png new file mode 100644 index 0000000..604bf17 Binary files /dev/null and b/images/tango/22x22/emotes/face-angel.png differ diff --git a/images/tango/22x22/emotes/face-crying.png b/images/tango/22x22/emotes/face-crying.png new file mode 100644 index 0000000..761b0e8 Binary files /dev/null and b/images/tango/22x22/emotes/face-crying.png differ diff --git a/images/tango/22x22/emotes/face-devilish.png b/images/tango/22x22/emotes/face-devilish.png new file mode 100644 index 0000000..fbd7808 Binary files /dev/null and b/images/tango/22x22/emotes/face-devilish.png differ diff --git a/images/tango/22x22/emotes/face-glasses.png b/images/tango/22x22/emotes/face-glasses.png new file mode 100644 index 0000000..5551f12 Binary files /dev/null and b/images/tango/22x22/emotes/face-glasses.png differ diff --git a/images/tango/22x22/emotes/face-grin.png b/images/tango/22x22/emotes/face-grin.png new file mode 100644 index 0000000..4513b92 Binary files /dev/null and b/images/tango/22x22/emotes/face-grin.png differ diff --git a/images/tango/22x22/emotes/face-kiss.png b/images/tango/22x22/emotes/face-kiss.png new file mode 100644 index 0000000..a5d1bdd Binary files /dev/null and b/images/tango/22x22/emotes/face-kiss.png differ diff --git a/images/tango/22x22/emotes/face-monkey.png b/images/tango/22x22/emotes/face-monkey.png new file mode 100644 index 0000000..ced7b2e Binary files /dev/null and b/images/tango/22x22/emotes/face-monkey.png differ diff --git a/images/tango/22x22/emotes/face-plain.png b/images/tango/22x22/emotes/face-plain.png new file mode 100644 index 0000000..ea0ad6a Binary files /dev/null and b/images/tango/22x22/emotes/face-plain.png differ diff --git a/images/tango/22x22/emotes/face-sad.png b/images/tango/22x22/emotes/face-sad.png new file mode 100644 index 0000000..23afcb2 Binary files /dev/null and b/images/tango/22x22/emotes/face-sad.png differ diff --git a/images/tango/22x22/emotes/face-smile-big.png b/images/tango/22x22/emotes/face-smile-big.png new file mode 100644 index 0000000..b2e8a36 Binary files /dev/null and b/images/tango/22x22/emotes/face-smile-big.png differ diff --git a/images/tango/22x22/emotes/face-smile.png b/images/tango/22x22/emotes/face-smile.png new file mode 100644 index 0000000..45ff17d Binary files /dev/null and b/images/tango/22x22/emotes/face-smile.png differ diff --git a/images/tango/22x22/emotes/face-surprise.png b/images/tango/22x22/emotes/face-surprise.png new file mode 100644 index 0000000..9bae9b6 Binary files /dev/null and b/images/tango/22x22/emotes/face-surprise.png differ diff --git a/images/tango/22x22/emotes/face-wink.png b/images/tango/22x22/emotes/face-wink.png new file mode 100644 index 0000000..cf10119 Binary files /dev/null and b/images/tango/22x22/emotes/face-wink.png differ diff --git a/images/tango/22x22/mimetypes/application-certificate.png b/images/tango/22x22/mimetypes/application-certificate.png new file mode 100644 index 0000000..9657b43 Binary files /dev/null and b/images/tango/22x22/mimetypes/application-certificate.png differ diff --git a/images/tango/22x22/mimetypes/application-x-executable.png b/images/tango/22x22/mimetypes/application-x-executable.png new file mode 100644 index 0000000..2bb2adf Binary files /dev/null and b/images/tango/22x22/mimetypes/application-x-executable.png differ diff --git a/images/tango/22x22/mimetypes/audio-x-generic.png b/images/tango/22x22/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..318bebd Binary files /dev/null and b/images/tango/22x22/mimetypes/audio-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/font-x-generic.png b/images/tango/22x22/mimetypes/font-x-generic.png new file mode 100644 index 0000000..bdc1814 Binary files /dev/null and b/images/tango/22x22/mimetypes/font-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/image-x-generic.png b/images/tango/22x22/mimetypes/image-x-generic.png new file mode 100644 index 0000000..10f4671 Binary files /dev/null and b/images/tango/22x22/mimetypes/image-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/package-x-generic.png b/images/tango/22x22/mimetypes/package-x-generic.png new file mode 100644 index 0000000..dc76287 Binary files /dev/null and b/images/tango/22x22/mimetypes/package-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/text-html.png b/images/tango/22x22/mimetypes/text-html.png new file mode 100644 index 0000000..51beaff Binary files /dev/null and b/images/tango/22x22/mimetypes/text-html.png differ diff --git a/images/tango/22x22/mimetypes/text-x-generic-template.png b/images/tango/22x22/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..f13f7c9 Binary files /dev/null and b/images/tango/22x22/mimetypes/text-x-generic-template.png differ diff --git a/images/tango/22x22/mimetypes/text-x-generic.png b/images/tango/22x22/mimetypes/text-x-generic.png new file mode 100644 index 0000000..d68a56c Binary files /dev/null and b/images/tango/22x22/mimetypes/text-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/text-x-script.png b/images/tango/22x22/mimetypes/text-x-script.png new file mode 100644 index 0000000..abf8f61 Binary files /dev/null and b/images/tango/22x22/mimetypes/text-x-script.png differ diff --git a/images/tango/22x22/mimetypes/video-x-generic.png b/images/tango/22x22/mimetypes/video-x-generic.png new file mode 100644 index 0000000..6e26d9c Binary files /dev/null and b/images/tango/22x22/mimetypes/video-x-generic.png differ diff --git a/images/tango/22x22/mimetypes/x-office-address-book.png b/images/tango/22x22/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..2e519ce Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-address-book.png differ diff --git a/images/tango/22x22/mimetypes/x-office-calendar.png b/images/tango/22x22/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..0c224e9 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-calendar.png differ diff --git a/images/tango/22x22/mimetypes/x-office-document-template.png b/images/tango/22x22/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..18c4246 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-document-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-document.png b/images/tango/22x22/mimetypes/x-office-document.png new file mode 100644 index 0000000..c9baeda Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-document.png differ diff --git a/images/tango/22x22/mimetypes/x-office-drawing-template.png b/images/tango/22x22/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..a7045ab Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-drawing-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-drawing.png b/images/tango/22x22/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..5d84f9f Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-drawing.png differ diff --git a/images/tango/22x22/mimetypes/x-office-presentation-template.png b/images/tango/22x22/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..1f7bc9b Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-presentation-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-presentation.png b/images/tango/22x22/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..3633f53 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-presentation.png differ diff --git a/images/tango/22x22/mimetypes/x-office-spreadsheet-template.png b/images/tango/22x22/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..ea7d467 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/tango/22x22/mimetypes/x-office-spreadsheet.png b/images/tango/22x22/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..c82d574 Binary files /dev/null and b/images/tango/22x22/mimetypes/x-office-spreadsheet.png differ diff --git a/images/tango/22x22/places/folder-remote.png b/images/tango/22x22/places/folder-remote.png new file mode 100644 index 0000000..82db43b Binary files /dev/null and b/images/tango/22x22/places/folder-remote.png differ diff --git a/images/tango/22x22/places/folder-saved-search.png b/images/tango/22x22/places/folder-saved-search.png new file mode 100644 index 0000000..901f4a7 Binary files /dev/null and b/images/tango/22x22/places/folder-saved-search.png differ diff --git a/images/tango/22x22/places/folder.png b/images/tango/22x22/places/folder.png new file mode 100644 index 0000000..01f45b8 Binary files /dev/null and b/images/tango/22x22/places/folder.png differ diff --git a/images/tango/22x22/places/network-server.png b/images/tango/22x22/places/network-server.png new file mode 100644 index 0000000..a0d7118 Binary files /dev/null and b/images/tango/22x22/places/network-server.png differ diff --git a/images/tango/22x22/places/network-workgroup.png b/images/tango/22x22/places/network-workgroup.png new file mode 100644 index 0000000..f96c9db Binary files /dev/null and b/images/tango/22x22/places/network-workgroup.png differ diff --git a/images/tango/22x22/places/start-here.png b/images/tango/22x22/places/start-here.png new file mode 100644 index 0000000..fc9b049 Binary files /dev/null and b/images/tango/22x22/places/start-here.png differ diff --git a/images/tango/22x22/places/user-desktop.png b/images/tango/22x22/places/user-desktop.png new file mode 100644 index 0000000..d60b2f1 Binary files /dev/null and b/images/tango/22x22/places/user-desktop.png differ diff --git a/images/tango/22x22/places/user-home.png b/images/tango/22x22/places/user-home.png new file mode 100644 index 0000000..c7eac99 Binary files /dev/null and b/images/tango/22x22/places/user-home.png differ diff --git a/images/tango/22x22/places/user-trash.png b/images/tango/22x22/places/user-trash.png new file mode 100644 index 0000000..05ff036 Binary files /dev/null and b/images/tango/22x22/places/user-trash.png differ diff --git a/images/tango/22x22/status/audio-volume-high.png b/images/tango/22x22/status/audio-volume-high.png new file mode 100644 index 0000000..1b2f30e Binary files /dev/null and b/images/tango/22x22/status/audio-volume-high.png differ diff --git a/images/tango/22x22/status/audio-volume-low.png b/images/tango/22x22/status/audio-volume-low.png new file mode 100644 index 0000000..46bcd19 Binary files /dev/null and b/images/tango/22x22/status/audio-volume-low.png differ diff --git a/images/tango/22x22/status/audio-volume-medium.png b/images/tango/22x22/status/audio-volume-medium.png new file mode 100644 index 0000000..31883ef Binary files /dev/null and b/images/tango/22x22/status/audio-volume-medium.png differ diff --git a/images/tango/22x22/status/audio-volume-muted.png b/images/tango/22x22/status/audio-volume-muted.png new file mode 100644 index 0000000..3e74c1d Binary files /dev/null and b/images/tango/22x22/status/audio-volume-muted.png differ diff --git a/images/tango/22x22/status/battery-caution.png b/images/tango/22x22/status/battery-caution.png new file mode 100644 index 0000000..456f7a4 Binary files /dev/null and b/images/tango/22x22/status/battery-caution.png differ diff --git a/images/tango/22x22/status/dialog-error.png b/images/tango/22x22/status/dialog-error.png new file mode 100644 index 0000000..7d6aaf6 Binary files /dev/null and b/images/tango/22x22/status/dialog-error.png differ diff --git a/images/tango/22x22/status/dialog-information.png b/images/tango/22x22/status/dialog-information.png new file mode 100644 index 0000000..07cf010 Binary files /dev/null and b/images/tango/22x22/status/dialog-information.png differ diff --git a/images/tango/22x22/status/dialog-warning.png b/images/tango/22x22/status/dialog-warning.png new file mode 100644 index 0000000..45b64a7 Binary files /dev/null and b/images/tango/22x22/status/dialog-warning.png differ diff --git a/images/tango/22x22/status/folder-drag-accept.png b/images/tango/22x22/status/folder-drag-accept.png new file mode 100644 index 0000000..16a2b84 Binary files /dev/null and b/images/tango/22x22/status/folder-drag-accept.png differ diff --git a/images/tango/22x22/status/folder-open.png b/images/tango/22x22/status/folder-open.png new file mode 100644 index 0000000..f81f70c Binary files /dev/null and b/images/tango/22x22/status/folder-open.png differ diff --git a/images/tango/22x22/status/folder-visiting.png b/images/tango/22x22/status/folder-visiting.png new file mode 100644 index 0000000..b4af525 Binary files /dev/null and b/images/tango/22x22/status/folder-visiting.png differ diff --git a/images/tango/22x22/status/image-loading.png b/images/tango/22x22/status/image-loading.png new file mode 100644 index 0000000..a4be885 Binary files /dev/null and b/images/tango/22x22/status/image-loading.png differ diff --git a/images/tango/22x22/status/image-missing.png b/images/tango/22x22/status/image-missing.png new file mode 100644 index 0000000..e12439a Binary files /dev/null and b/images/tango/22x22/status/image-missing.png differ diff --git a/images/tango/22x22/status/mail-attachment.png b/images/tango/22x22/status/mail-attachment.png new file mode 100644 index 0000000..c5d9633 Binary files /dev/null and b/images/tango/22x22/status/mail-attachment.png differ diff --git a/images/tango/22x22/status/network-error.png b/images/tango/22x22/status/network-error.png new file mode 100644 index 0000000..d36ce29 Binary files /dev/null and b/images/tango/22x22/status/network-error.png differ diff --git a/images/tango/22x22/status/network-idle.png b/images/tango/22x22/status/network-idle.png new file mode 100644 index 0000000..caebd98 Binary files /dev/null and b/images/tango/22x22/status/network-idle.png differ diff --git a/images/tango/22x22/status/network-offline.png b/images/tango/22x22/status/network-offline.png new file mode 100644 index 0000000..72dd12c Binary files /dev/null and b/images/tango/22x22/status/network-offline.png differ diff --git a/images/tango/22x22/status/network-receive.png b/images/tango/22x22/status/network-receive.png new file mode 100644 index 0000000..11dfa07 Binary files /dev/null and b/images/tango/22x22/status/network-receive.png differ diff --git a/images/tango/22x22/status/network-transmit-receive.png b/images/tango/22x22/status/network-transmit-receive.png new file mode 100644 index 0000000..54d145f Binary files /dev/null and b/images/tango/22x22/status/network-transmit-receive.png differ diff --git a/images/tango/22x22/status/network-transmit.png b/images/tango/22x22/status/network-transmit.png new file mode 100644 index 0000000..97b6301 Binary files /dev/null and b/images/tango/22x22/status/network-transmit.png differ diff --git a/images/tango/22x22/status/network-wireless-encrypted.png b/images/tango/22x22/status/network-wireless-encrypted.png new file mode 100644 index 0000000..712771c Binary files /dev/null and b/images/tango/22x22/status/network-wireless-encrypted.png differ diff --git a/images/tango/22x22/status/printer-error.png b/images/tango/22x22/status/printer-error.png new file mode 100644 index 0000000..63863c2 Binary files /dev/null and b/images/tango/22x22/status/printer-error.png differ diff --git a/images/tango/22x22/status/software-update-available.png b/images/tango/22x22/status/software-update-available.png new file mode 100644 index 0000000..c1d1348 Binary files /dev/null and b/images/tango/22x22/status/software-update-available.png differ diff --git a/images/tango/22x22/status/software-update-urgent.png b/images/tango/22x22/status/software-update-urgent.png new file mode 100644 index 0000000..0ce38d9 Binary files /dev/null and b/images/tango/22x22/status/software-update-urgent.png differ diff --git a/images/tango/22x22/status/user-trash-full.png b/images/tango/22x22/status/user-trash-full.png new file mode 100644 index 0000000..ffd7cc2 Binary files /dev/null and b/images/tango/22x22/status/user-trash-full.png differ diff --git a/images/tango/22x22/status/weather-clear-night.png b/images/tango/22x22/status/weather-clear-night.png new file mode 100644 index 0000000..52ea3e9 Binary files /dev/null and b/images/tango/22x22/status/weather-clear-night.png differ diff --git a/images/tango/22x22/status/weather-clear.png b/images/tango/22x22/status/weather-clear.png new file mode 100644 index 0000000..e17ca7c Binary files /dev/null and b/images/tango/22x22/status/weather-clear.png differ diff --git a/images/tango/22x22/status/weather-few-clouds-night.png b/images/tango/22x22/status/weather-few-clouds-night.png new file mode 100644 index 0000000..69fe49a Binary files /dev/null and b/images/tango/22x22/status/weather-few-clouds-night.png differ diff --git a/images/tango/22x22/status/weather-few-clouds.png b/images/tango/22x22/status/weather-few-clouds.png new file mode 100644 index 0000000..28b1147 Binary files /dev/null and b/images/tango/22x22/status/weather-few-clouds.png differ diff --git a/images/tango/22x22/status/weather-overcast.png b/images/tango/22x22/status/weather-overcast.png new file mode 100644 index 0000000..79d7bc2 Binary files /dev/null and b/images/tango/22x22/status/weather-overcast.png differ diff --git a/images/tango/22x22/status/weather-severe-alert.png b/images/tango/22x22/status/weather-severe-alert.png new file mode 100644 index 0000000..e4d09b6 Binary files /dev/null and b/images/tango/22x22/status/weather-severe-alert.png differ diff --git a/images/tango/22x22/status/weather-showers-scattered.png b/images/tango/22x22/status/weather-showers-scattered.png new file mode 100644 index 0000000..9eddd93 Binary files /dev/null and b/images/tango/22x22/status/weather-showers-scattered.png differ diff --git a/images/tango/22x22/status/weather-showers.png b/images/tango/22x22/status/weather-showers.png new file mode 100644 index 0000000..4450fb1 Binary files /dev/null and b/images/tango/22x22/status/weather-showers.png differ diff --git a/images/tango/22x22/status/weather-snow.png b/images/tango/22x22/status/weather-snow.png new file mode 100644 index 0000000..5457799 Binary files /dev/null and b/images/tango/22x22/status/weather-snow.png differ diff --git a/images/tango/22x22/status/weather-storm.png b/images/tango/22x22/status/weather-storm.png new file mode 100644 index 0000000..3b7ca9c Binary files /dev/null and b/images/tango/22x22/status/weather-storm.png differ diff --git a/images/tango/32x32/actions/address-book-new.png b/images/tango/32x32/actions/address-book-new.png new file mode 100644 index 0000000..420139d Binary files /dev/null and b/images/tango/32x32/actions/address-book-new.png differ diff --git a/images/tango/32x32/actions/appointment-new.png b/images/tango/32x32/actions/appointment-new.png new file mode 100644 index 0000000..85daef3 Binary files /dev/null and b/images/tango/32x32/actions/appointment-new.png differ diff --git a/images/tango/32x32/actions/bookmark-new.png b/images/tango/32x32/actions/bookmark-new.png new file mode 100644 index 0000000..621312a Binary files /dev/null and b/images/tango/32x32/actions/bookmark-new.png differ diff --git a/images/tango/32x32/actions/contact-new.png b/images/tango/32x32/actions/contact-new.png new file mode 100644 index 0000000..8b10c1e Binary files /dev/null and b/images/tango/32x32/actions/contact-new.png differ diff --git a/images/tango/32x32/actions/document-new.png b/images/tango/32x32/actions/document-new.png new file mode 100644 index 0000000..e6d64bb Binary files /dev/null and b/images/tango/32x32/actions/document-new.png differ diff --git a/images/tango/32x32/actions/document-open.png b/images/tango/32x32/actions/document-open.png new file mode 100644 index 0000000..f35f258 Binary files /dev/null and b/images/tango/32x32/actions/document-open.png differ diff --git a/images/tango/32x32/actions/document-pdf.png b/images/tango/32x32/actions/document-pdf.png new file mode 100644 index 0000000..194ff27 Binary files /dev/null and b/images/tango/32x32/actions/document-pdf.png differ diff --git a/images/tango/32x32/actions/document-print-preview.png b/images/tango/32x32/actions/document-print-preview.png new file mode 100644 index 0000000..772efe5 Binary files /dev/null and b/images/tango/32x32/actions/document-print-preview.png differ diff --git a/images/tango/32x32/actions/document-print.png b/images/tango/32x32/actions/document-print.png new file mode 100644 index 0000000..3ef3930 Binary files /dev/null and b/images/tango/32x32/actions/document-print.png differ diff --git a/images/tango/32x32/actions/document-properties.png b/images/tango/32x32/actions/document-properties.png new file mode 100644 index 0000000..fa697db Binary files /dev/null and b/images/tango/32x32/actions/document-properties.png differ diff --git a/images/tango/32x32/actions/document-revert.png b/images/tango/32x32/actions/document-revert.png new file mode 100644 index 0000000..3540188 Binary files /dev/null and b/images/tango/32x32/actions/document-revert.png differ diff --git a/images/tango/32x32/actions/document-save-as.png b/images/tango/32x32/actions/document-save-as.png new file mode 100644 index 0000000..5c9f6b3 Binary files /dev/null and b/images/tango/32x32/actions/document-save-as.png differ diff --git a/images/tango/32x32/actions/document-save.png b/images/tango/32x32/actions/document-save.png new file mode 100644 index 0000000..db5c52b Binary files /dev/null and b/images/tango/32x32/actions/document-save.png differ diff --git a/images/tango/32x32/actions/edit-clear.png b/images/tango/32x32/actions/edit-clear.png new file mode 100644 index 0000000..5542948 Binary files /dev/null and b/images/tango/32x32/actions/edit-clear.png differ diff --git a/images/tango/32x32/actions/edit-copy.png b/images/tango/32x32/actions/edit-copy.png new file mode 100644 index 0000000..3348ee0 Binary files /dev/null and b/images/tango/32x32/actions/edit-copy.png differ diff --git a/images/tango/32x32/actions/edit-cut.png b/images/tango/32x32/actions/edit-cut.png new file mode 100644 index 0000000..217663b Binary files /dev/null and b/images/tango/32x32/actions/edit-cut.png differ diff --git a/images/tango/32x32/actions/edit-delete.png b/images/tango/32x32/actions/edit-delete.png new file mode 100644 index 0000000..9becb3e Binary files /dev/null and b/images/tango/32x32/actions/edit-delete.png differ diff --git a/images/tango/32x32/actions/edit-find-replace.png b/images/tango/32x32/actions/edit-find-replace.png new file mode 100644 index 0000000..0f1b117 Binary files /dev/null and b/images/tango/32x32/actions/edit-find-replace.png differ diff --git a/images/tango/32x32/actions/edit-find.png b/images/tango/32x32/actions/edit-find.png new file mode 100644 index 0000000..5594785 Binary files /dev/null and b/images/tango/32x32/actions/edit-find.png differ diff --git a/images/tango/32x32/actions/edit-paste.png b/images/tango/32x32/actions/edit-paste.png new file mode 100644 index 0000000..dd429ce Binary files /dev/null and b/images/tango/32x32/actions/edit-paste.png differ diff --git a/images/tango/32x32/actions/edit-redo.png b/images/tango/32x32/actions/edit-redo.png new file mode 100644 index 0000000..3eb7b05 Binary files /dev/null and b/images/tango/32x32/actions/edit-redo.png differ diff --git a/images/tango/32x32/actions/edit-select-all.png b/images/tango/32x32/actions/edit-select-all.png new file mode 100644 index 0000000..107fc60 Binary files /dev/null and b/images/tango/32x32/actions/edit-select-all.png differ diff --git a/images/tango/32x32/actions/edit-undo.png b/images/tango/32x32/actions/edit-undo.png new file mode 100644 index 0000000..61b2ce9 Binary files /dev/null and b/images/tango/32x32/actions/edit-undo.png differ diff --git a/images/tango/32x32/actions/folder-new.png b/images/tango/32x32/actions/folder-new.png new file mode 100644 index 0000000..fcd15c0 Binary files /dev/null and b/images/tango/32x32/actions/folder-new.png differ diff --git a/images/tango/32x32/actions/format-indent-less.png b/images/tango/32x32/actions/format-indent-less.png new file mode 100644 index 0000000..7ced16f Binary files /dev/null and b/images/tango/32x32/actions/format-indent-less.png differ diff --git a/images/tango/32x32/actions/format-indent-more.png b/images/tango/32x32/actions/format-indent-more.png new file mode 100644 index 0000000..6a18867 Binary files /dev/null and b/images/tango/32x32/actions/format-indent-more.png differ diff --git a/images/tango/32x32/actions/format-justify-center.png b/images/tango/32x32/actions/format-justify-center.png new file mode 100644 index 0000000..a0db2bb Binary files /dev/null and b/images/tango/32x32/actions/format-justify-center.png differ diff --git a/images/tango/32x32/actions/format-justify-fill.png b/images/tango/32x32/actions/format-justify-fill.png new file mode 100644 index 0000000..2a34a8f Binary files /dev/null and b/images/tango/32x32/actions/format-justify-fill.png differ diff --git a/images/tango/32x32/actions/format-justify-left.png b/images/tango/32x32/actions/format-justify-left.png new file mode 100644 index 0000000..ba0e914 Binary files /dev/null and b/images/tango/32x32/actions/format-justify-left.png differ diff --git a/images/tango/32x32/actions/format-justify-right.png b/images/tango/32x32/actions/format-justify-right.png new file mode 100644 index 0000000..2144cb9 Binary files /dev/null and b/images/tango/32x32/actions/format-justify-right.png differ diff --git a/images/tango/32x32/actions/format-text-bold.png b/images/tango/32x32/actions/format-text-bold.png new file mode 100644 index 0000000..99ed19c Binary files /dev/null and b/images/tango/32x32/actions/format-text-bold.png differ diff --git a/images/tango/32x32/actions/format-text-italic.png b/images/tango/32x32/actions/format-text-italic.png new file mode 100644 index 0000000..87ed6f9 Binary files /dev/null and b/images/tango/32x32/actions/format-text-italic.png differ diff --git a/images/tango/32x32/actions/format-text-strikethrough.png b/images/tango/32x32/actions/format-text-strikethrough.png new file mode 100644 index 0000000..b9b55ab Binary files /dev/null and b/images/tango/32x32/actions/format-text-strikethrough.png differ diff --git a/images/tango/32x32/actions/format-text-underline.png b/images/tango/32x32/actions/format-text-underline.png new file mode 100644 index 0000000..0de6b1c Binary files /dev/null and b/images/tango/32x32/actions/format-text-underline.png differ diff --git a/images/tango/32x32/actions/go-bottom.png b/images/tango/32x32/actions/go-bottom.png new file mode 100644 index 0000000..bf973fe Binary files /dev/null and b/images/tango/32x32/actions/go-bottom.png differ diff --git a/images/tango/32x32/actions/go-down.png b/images/tango/32x32/actions/go-down.png new file mode 100644 index 0000000..dce3f15 Binary files /dev/null and b/images/tango/32x32/actions/go-down.png differ diff --git a/images/tango/32x32/actions/go-first.png b/images/tango/32x32/actions/go-first.png new file mode 100644 index 0000000..5e2a6b1 Binary files /dev/null and b/images/tango/32x32/actions/go-first.png differ diff --git a/images/tango/32x32/actions/go-home.png b/images/tango/32x32/actions/go-home.png new file mode 100644 index 0000000..a3ca103 Binary files /dev/null and b/images/tango/32x32/actions/go-home.png differ diff --git a/images/tango/32x32/actions/go-jump.png b/images/tango/32x32/actions/go-jump.png new file mode 100644 index 0000000..34dc4c0 Binary files /dev/null and b/images/tango/32x32/actions/go-jump.png differ diff --git a/images/tango/32x32/actions/go-last.png b/images/tango/32x32/actions/go-last.png new file mode 100644 index 0000000..48fe95b Binary files /dev/null and b/images/tango/32x32/actions/go-last.png differ diff --git a/images/tango/32x32/actions/go-next.png b/images/tango/32x32/actions/go-next.png new file mode 100644 index 0000000..a68e2db Binary files /dev/null and b/images/tango/32x32/actions/go-next.png differ diff --git a/images/tango/32x32/actions/go-previous.png b/images/tango/32x32/actions/go-previous.png new file mode 100644 index 0000000..c37bc04 Binary files /dev/null and b/images/tango/32x32/actions/go-previous.png differ diff --git a/images/tango/32x32/actions/go-top.png b/images/tango/32x32/actions/go-top.png new file mode 100644 index 0000000..d99552b Binary files /dev/null and b/images/tango/32x32/actions/go-top.png differ diff --git a/images/tango/32x32/actions/go-up.png b/images/tango/32x32/actions/go-up.png new file mode 100644 index 0000000..afb307b Binary files /dev/null and b/images/tango/32x32/actions/go-up.png differ diff --git a/images/tango/32x32/actions/list-add.png b/images/tango/32x32/actions/list-add.png new file mode 100644 index 0000000..2acdd8f Binary files /dev/null and b/images/tango/32x32/actions/list-add.png differ diff --git a/images/tango/32x32/actions/list-remove.png b/images/tango/32x32/actions/list-remove.png new file mode 100644 index 0000000..c5524f7 Binary files /dev/null and b/images/tango/32x32/actions/list-remove.png differ diff --git a/images/tango/32x32/actions/mail-forward.png b/images/tango/32x32/actions/mail-forward.png new file mode 100644 index 0000000..bea94ab Binary files /dev/null and b/images/tango/32x32/actions/mail-forward.png differ diff --git a/images/tango/32x32/actions/mail-mark-junk.png b/images/tango/32x32/actions/mail-mark-junk.png new file mode 100644 index 0000000..0af3006 Binary files /dev/null and b/images/tango/32x32/actions/mail-mark-junk.png differ diff --git a/images/tango/32x32/actions/mail-mark-not-junk.png b/images/tango/32x32/actions/mail-mark-not-junk.png new file mode 100644 index 0000000..296e92a Binary files /dev/null and b/images/tango/32x32/actions/mail-mark-not-junk.png differ diff --git a/images/tango/32x32/actions/mail-message-new.png b/images/tango/32x32/actions/mail-message-new.png new file mode 100644 index 0000000..9f51246 Binary files /dev/null and b/images/tango/32x32/actions/mail-message-new.png differ diff --git a/images/tango/32x32/actions/mail-reply-all.png b/images/tango/32x32/actions/mail-reply-all.png new file mode 100644 index 0000000..0216e39 Binary files /dev/null and b/images/tango/32x32/actions/mail-reply-all.png differ diff --git a/images/tango/32x32/actions/mail-reply-sender.png b/images/tango/32x32/actions/mail-reply-sender.png new file mode 100644 index 0000000..3f248dc Binary files /dev/null and b/images/tango/32x32/actions/mail-reply-sender.png differ diff --git a/images/tango/32x32/actions/mail-send-receive.png b/images/tango/32x32/actions/mail-send-receive.png new file mode 100644 index 0000000..99349b9 Binary files /dev/null and b/images/tango/32x32/actions/mail-send-receive.png differ diff --git a/images/tango/32x32/actions/media-eject.png b/images/tango/32x32/actions/media-eject.png new file mode 100644 index 0000000..b218e7a Binary files /dev/null and b/images/tango/32x32/actions/media-eject.png differ diff --git a/images/tango/32x32/actions/media-playback-pause.png b/images/tango/32x32/actions/media-playback-pause.png new file mode 100644 index 0000000..1e9f4d5 Binary files /dev/null and b/images/tango/32x32/actions/media-playback-pause.png differ diff --git a/images/tango/32x32/actions/media-playback-start.png b/images/tango/32x32/actions/media-playback-start.png new file mode 100644 index 0000000..66f32d8 Binary files /dev/null and b/images/tango/32x32/actions/media-playback-start.png differ diff --git a/images/tango/32x32/actions/media-playback-stop.png b/images/tango/32x32/actions/media-playback-stop.png new file mode 100644 index 0000000..a094787 Binary files /dev/null and b/images/tango/32x32/actions/media-playback-stop.png differ diff --git a/images/tango/32x32/actions/media-record.png b/images/tango/32x32/actions/media-record.png new file mode 100644 index 0000000..43f034b Binary files /dev/null and b/images/tango/32x32/actions/media-record.png differ diff --git a/images/tango/32x32/actions/media-seek-backward.png b/images/tango/32x32/actions/media-seek-backward.png new file mode 100644 index 0000000..535c536 Binary files /dev/null and b/images/tango/32x32/actions/media-seek-backward.png differ diff --git a/images/tango/32x32/actions/media-seek-forward.png b/images/tango/32x32/actions/media-seek-forward.png new file mode 100644 index 0000000..96ebe01 Binary files /dev/null and b/images/tango/32x32/actions/media-seek-forward.png differ diff --git a/images/tango/32x32/actions/media-skip-backward.png b/images/tango/32x32/actions/media-skip-backward.png new file mode 100644 index 0000000..aa08251 Binary files /dev/null and b/images/tango/32x32/actions/media-skip-backward.png differ diff --git a/images/tango/32x32/actions/media-skip-forward.png b/images/tango/32x32/actions/media-skip-forward.png new file mode 100644 index 0000000..52be942 Binary files /dev/null and b/images/tango/32x32/actions/media-skip-forward.png differ diff --git a/images/tango/32x32/actions/process-stop.png b/images/tango/32x32/actions/process-stop.png new file mode 100644 index 0000000..e7a8d17 Binary files /dev/null and b/images/tango/32x32/actions/process-stop.png differ diff --git a/images/tango/32x32/actions/system-lock-screen.png b/images/tango/32x32/actions/system-lock-screen.png new file mode 100644 index 0000000..2c220fc Binary files /dev/null and b/images/tango/32x32/actions/system-lock-screen.png differ diff --git a/images/tango/32x32/actions/system-log-out.png b/images/tango/32x32/actions/system-log-out.png new file mode 100644 index 0000000..fddbc2b Binary files /dev/null and b/images/tango/32x32/actions/system-log-out.png differ diff --git a/images/tango/32x32/actions/system-search.png b/images/tango/32x32/actions/system-search.png new file mode 100644 index 0000000..950d792 Binary files /dev/null and b/images/tango/32x32/actions/system-search.png differ diff --git a/images/tango/32x32/actions/system-shutdown.png b/images/tango/32x32/actions/system-shutdown.png new file mode 100644 index 0000000..36acd46 Binary files /dev/null and b/images/tango/32x32/actions/system-shutdown.png differ diff --git a/images/tango/32x32/actions/tab-new.png b/images/tango/32x32/actions/tab-new.png new file mode 100644 index 0000000..294d150 Binary files /dev/null and b/images/tango/32x32/actions/tab-new.png differ diff --git a/images/tango/32x32/actions/view-fullscreen.png b/images/tango/32x32/actions/view-fullscreen.png new file mode 100644 index 0000000..00e6b83 Binary files /dev/null and b/images/tango/32x32/actions/view-fullscreen.png differ diff --git a/images/tango/32x32/actions/view-refresh.png b/images/tango/32x32/actions/view-refresh.png new file mode 100644 index 0000000..606ea9e Binary files /dev/null and b/images/tango/32x32/actions/view-refresh.png differ diff --git a/images/tango/32x32/actions/window-new.png b/images/tango/32x32/actions/window-new.png new file mode 100644 index 0000000..e091702 Binary files /dev/null and b/images/tango/32x32/actions/window-new.png differ diff --git a/images/tango/32x32/animations/process-working.png b/images/tango/32x32/animations/process-working.png new file mode 100644 index 0000000..f19c528 Binary files /dev/null and b/images/tango/32x32/animations/process-working.png differ diff --git a/images/tango/32x32/apps/accessories-calculator.png b/images/tango/32x32/apps/accessories-calculator.png new file mode 100644 index 0000000..7de1c44 Binary files /dev/null and b/images/tango/32x32/apps/accessories-calculator.png differ diff --git a/images/tango/32x32/apps/accessories-character-map.png b/images/tango/32x32/apps/accessories-character-map.png new file mode 100644 index 0000000..a86c23e Binary files /dev/null and b/images/tango/32x32/apps/accessories-character-map.png differ diff --git a/images/tango/32x32/apps/accessories-text-editor.png b/images/tango/32x32/apps/accessories-text-editor.png new file mode 100644 index 0000000..c6b6285 Binary files /dev/null and b/images/tango/32x32/apps/accessories-text-editor.png differ diff --git a/images/tango/32x32/apps/help-browser.png b/images/tango/32x32/apps/help-browser.png new file mode 100644 index 0000000..d60425f Binary files /dev/null and b/images/tango/32x32/apps/help-browser.png differ diff --git a/images/tango/32x32/apps/internet-group-chat.png b/images/tango/32x32/apps/internet-group-chat.png new file mode 100644 index 0000000..9cb1d3b Binary files /dev/null and b/images/tango/32x32/apps/internet-group-chat.png differ diff --git a/images/tango/32x32/apps/internet-mail.png b/images/tango/32x32/apps/internet-mail.png new file mode 100644 index 0000000..dc3b9dd Binary files /dev/null and b/images/tango/32x32/apps/internet-mail.png differ diff --git a/images/tango/32x32/apps/internet-news-reader.png b/images/tango/32x32/apps/internet-news-reader.png new file mode 100644 index 0000000..ebc528f Binary files /dev/null and b/images/tango/32x32/apps/internet-news-reader.png differ diff --git a/images/tango/32x32/apps/internet-web-browser.png b/images/tango/32x32/apps/internet-web-browser.png new file mode 100644 index 0000000..10d2ed4 Binary files /dev/null and b/images/tango/32x32/apps/internet-web-browser.png differ diff --git a/images/tango/32x32/apps/office-calendar.png b/images/tango/32x32/apps/office-calendar.png new file mode 100644 index 0000000..7817c12 Binary files /dev/null and b/images/tango/32x32/apps/office-calendar.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-accessibility.png b/images/tango/32x32/apps/preferences-desktop-accessibility.png new file mode 100644 index 0000000..adfe247 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-accessibility.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-assistive-technology.png b/images/tango/32x32/apps/preferences-desktop-assistive-technology.png new file mode 100644 index 0000000..70adb92 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-assistive-technology.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-font.png b/images/tango/32x32/apps/preferences-desktop-font.png new file mode 100644 index 0000000..b4ec434 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-font.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png b/images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 0000000..178dd29 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-keyboard-shortcuts.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-locale.png b/images/tango/32x32/apps/preferences-desktop-locale.png new file mode 100644 index 0000000..66224ae Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-locale.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-multimedia.png b/images/tango/32x32/apps/preferences-desktop-multimedia.png new file mode 100644 index 0000000..56a5662 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-multimedia.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-remote-desktop.png b/images/tango/32x32/apps/preferences-desktop-remote-desktop.png new file mode 100644 index 0000000..6da67c6 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-remote-desktop.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-screensaver.png b/images/tango/32x32/apps/preferences-desktop-screensaver.png new file mode 100644 index 0000000..dba2455 Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-screensaver.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-theme.png b/images/tango/32x32/apps/preferences-desktop-theme.png new file mode 100644 index 0000000..7af777d Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-theme.png differ diff --git a/images/tango/32x32/apps/preferences-desktop-wallpaper.png b/images/tango/32x32/apps/preferences-desktop-wallpaper.png new file mode 100644 index 0000000..4eb744c Binary files /dev/null and b/images/tango/32x32/apps/preferences-desktop-wallpaper.png differ diff --git a/images/tango/32x32/apps/preferences-system-network-proxy.png b/images/tango/32x32/apps/preferences-system-network-proxy.png new file mode 100644 index 0000000..e75f6f7 Binary files /dev/null and b/images/tango/32x32/apps/preferences-system-network-proxy.png differ diff --git a/images/tango/32x32/apps/preferences-system-session.png b/images/tango/32x32/apps/preferences-system-session.png new file mode 100644 index 0000000..f8c2d11 Binary files /dev/null and b/images/tango/32x32/apps/preferences-system-session.png differ diff --git a/images/tango/32x32/apps/preferences-system-windows.png b/images/tango/32x32/apps/preferences-system-windows.png new file mode 100644 index 0000000..517e48a Binary files /dev/null and b/images/tango/32x32/apps/preferences-system-windows.png differ diff --git a/images/tango/32x32/apps/system-file-manager.png b/images/tango/32x32/apps/system-file-manager.png new file mode 100644 index 0000000..1d6ce31 Binary files /dev/null and b/images/tango/32x32/apps/system-file-manager.png differ diff --git a/images/tango/32x32/apps/system-installer.png b/images/tango/32x32/apps/system-installer.png new file mode 100644 index 0000000..c26576e Binary files /dev/null and b/images/tango/32x32/apps/system-installer.png differ diff --git a/images/tango/32x32/apps/system-software-update.png b/images/tango/32x32/apps/system-software-update.png new file mode 100644 index 0000000..470b5d4 Binary files /dev/null and b/images/tango/32x32/apps/system-software-update.png differ diff --git a/images/tango/32x32/apps/system-users.png b/images/tango/32x32/apps/system-users.png new file mode 100644 index 0000000..749c825 Binary files /dev/null and b/images/tango/32x32/apps/system-users.png differ diff --git a/images/tango/32x32/apps/utilities-system-monitor.png b/images/tango/32x32/apps/utilities-system-monitor.png new file mode 100644 index 0000000..b62959e Binary files /dev/null and b/images/tango/32x32/apps/utilities-system-monitor.png differ diff --git a/images/tango/32x32/apps/utilities-terminal.png b/images/tango/32x32/apps/utilities-terminal.png new file mode 100644 index 0000000..f86c784 Binary files /dev/null and b/images/tango/32x32/apps/utilities-terminal.png differ diff --git a/images/tango/32x32/categories/applications-accessories.png b/images/tango/32x32/categories/applications-accessories.png new file mode 100644 index 0000000..fd43de3 Binary files /dev/null and b/images/tango/32x32/categories/applications-accessories.png differ diff --git a/images/tango/32x32/categories/applications-development.png b/images/tango/32x32/categories/applications-development.png new file mode 100644 index 0000000..bc88a5c Binary files /dev/null and b/images/tango/32x32/categories/applications-development.png differ diff --git a/images/tango/32x32/categories/applications-games.png b/images/tango/32x32/categories/applications-games.png new file mode 100644 index 0000000..ff4044c Binary files /dev/null and b/images/tango/32x32/categories/applications-games.png differ diff --git a/images/tango/32x32/categories/applications-graphics.png b/images/tango/32x32/categories/applications-graphics.png new file mode 100644 index 0000000..36b77c2 Binary files /dev/null and b/images/tango/32x32/categories/applications-graphics.png differ diff --git a/images/tango/32x32/categories/applications-internet.png b/images/tango/32x32/categories/applications-internet.png new file mode 100644 index 0000000..096e848 Binary files /dev/null and b/images/tango/32x32/categories/applications-internet.png differ diff --git a/images/tango/32x32/categories/applications-multimedia.png b/images/tango/32x32/categories/applications-multimedia.png new file mode 100644 index 0000000..d09995a Binary files /dev/null and b/images/tango/32x32/categories/applications-multimedia.png differ diff --git a/images/tango/32x32/categories/applications-office.png b/images/tango/32x32/categories/applications-office.png new file mode 100644 index 0000000..efb850e Binary files /dev/null and b/images/tango/32x32/categories/applications-office.png differ diff --git a/images/tango/32x32/categories/applications-other.png b/images/tango/32x32/categories/applications-other.png new file mode 100644 index 0000000..1990dbb Binary files /dev/null and b/images/tango/32x32/categories/applications-other.png differ diff --git a/images/tango/32x32/categories/applications-system.png b/images/tango/32x32/categories/applications-system.png new file mode 100644 index 0000000..565f406 Binary files /dev/null and b/images/tango/32x32/categories/applications-system.png differ diff --git a/images/tango/32x32/categories/preferences-desktop-peripherals.png b/images/tango/32x32/categories/preferences-desktop-peripherals.png new file mode 100644 index 0000000..4682b36 Binary files /dev/null and b/images/tango/32x32/categories/preferences-desktop-peripherals.png differ diff --git a/images/tango/32x32/categories/preferences-desktop.png b/images/tango/32x32/categories/preferences-desktop.png new file mode 100644 index 0000000..3ec71a3 Binary files /dev/null and b/images/tango/32x32/categories/preferences-desktop.png differ diff --git a/images/tango/32x32/categories/preferences-system.png b/images/tango/32x32/categories/preferences-system.png new file mode 100644 index 0000000..6e52db7 Binary files /dev/null and b/images/tango/32x32/categories/preferences-system.png differ diff --git a/images/tango/32x32/devices/audio-card.png b/images/tango/32x32/devices/audio-card.png new file mode 100644 index 0000000..5b15dd6 Binary files /dev/null and b/images/tango/32x32/devices/audio-card.png differ diff --git a/images/tango/32x32/devices/audio-input-microphone.png b/images/tango/32x32/devices/audio-input-microphone.png new file mode 100644 index 0000000..9fe3b96 Binary files /dev/null and b/images/tango/32x32/devices/audio-input-microphone.png differ diff --git a/images/tango/32x32/devices/battery.png b/images/tango/32x32/devices/battery.png new file mode 100644 index 0000000..ef08925 Binary files /dev/null and b/images/tango/32x32/devices/battery.png differ diff --git a/images/tango/32x32/devices/camera-photo.png b/images/tango/32x32/devices/camera-photo.png new file mode 100644 index 0000000..ffbffc7 Binary files /dev/null and b/images/tango/32x32/devices/camera-photo.png differ diff --git a/images/tango/32x32/devices/camera-video.png b/images/tango/32x32/devices/camera-video.png new file mode 100644 index 0000000..7473dd7 Binary files /dev/null and b/images/tango/32x32/devices/camera-video.png differ diff --git a/images/tango/32x32/devices/computer.png b/images/tango/32x32/devices/computer.png new file mode 100644 index 0000000..e34eb4e Binary files /dev/null and b/images/tango/32x32/devices/computer.png differ diff --git a/images/tango/32x32/devices/drive-harddisk.png b/images/tango/32x32/devices/drive-harddisk.png new file mode 100644 index 0000000..b34d8b7 Binary files /dev/null and b/images/tango/32x32/devices/drive-harddisk.png differ diff --git a/images/tango/32x32/devices/drive-optical.png b/images/tango/32x32/devices/drive-optical.png new file mode 100644 index 0000000..bf2e8c8 Binary files /dev/null and b/images/tango/32x32/devices/drive-optical.png differ diff --git a/images/tango/32x32/devices/drive-removable-media.png b/images/tango/32x32/devices/drive-removable-media.png new file mode 100644 index 0000000..2d28909 Binary files /dev/null and b/images/tango/32x32/devices/drive-removable-media.png differ diff --git a/images/tango/32x32/devices/input-gaming.png b/images/tango/32x32/devices/input-gaming.png new file mode 100644 index 0000000..26e2a98 Binary files /dev/null and b/images/tango/32x32/devices/input-gaming.png differ diff --git a/images/tango/32x32/devices/input-keyboard.png b/images/tango/32x32/devices/input-keyboard.png new file mode 100644 index 0000000..788c717 Binary files /dev/null and b/images/tango/32x32/devices/input-keyboard.png differ diff --git a/images/tango/32x32/devices/input-mouse.png b/images/tango/32x32/devices/input-mouse.png new file mode 100644 index 0000000..49a923c Binary files /dev/null and b/images/tango/32x32/devices/input-mouse.png differ diff --git a/images/tango/32x32/devices/media-flash.png b/images/tango/32x32/devices/media-flash.png new file mode 100644 index 0000000..7540f3f Binary files /dev/null and b/images/tango/32x32/devices/media-flash.png differ diff --git a/images/tango/32x32/devices/media-floppy.png b/images/tango/32x32/devices/media-floppy.png new file mode 100644 index 0000000..17b1274 Binary files /dev/null and b/images/tango/32x32/devices/media-floppy.png differ diff --git a/images/tango/32x32/devices/media-optical.png b/images/tango/32x32/devices/media-optical.png new file mode 100644 index 0000000..5853a75 Binary files /dev/null and b/images/tango/32x32/devices/media-optical.png differ diff --git a/images/tango/32x32/devices/multimedia-player.png b/images/tango/32x32/devices/multimedia-player.png new file mode 100644 index 0000000..8d59208 Binary files /dev/null and b/images/tango/32x32/devices/multimedia-player.png differ diff --git a/images/tango/32x32/devices/network-wired.png b/images/tango/32x32/devices/network-wired.png new file mode 100644 index 0000000..c3ca691 Binary files /dev/null and b/images/tango/32x32/devices/network-wired.png differ diff --git a/images/tango/32x32/devices/network-wireless.png b/images/tango/32x32/devices/network-wireless.png new file mode 100644 index 0000000..aa5f9f2 Binary files /dev/null and b/images/tango/32x32/devices/network-wireless.png differ diff --git a/images/tango/32x32/devices/printer.png b/images/tango/32x32/devices/printer.png new file mode 100644 index 0000000..05b49e0 Binary files /dev/null and b/images/tango/32x32/devices/printer.png differ diff --git a/images/tango/32x32/devices/video-display.png b/images/tango/32x32/devices/video-display.png new file mode 100644 index 0000000..b95ea5d Binary files /dev/null and b/images/tango/32x32/devices/video-display.png differ diff --git a/images/tango/32x32/emblems/emblem-favorite.png b/images/tango/32x32/emblems/emblem-favorite.png new file mode 100644 index 0000000..8a9ad39 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-favorite.png differ diff --git a/images/tango/32x32/emblems/emblem-important.png b/images/tango/32x32/emblems/emblem-important.png new file mode 100644 index 0000000..263fbd5 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-important.png differ diff --git a/images/tango/32x32/emblems/emblem-photos.png b/images/tango/32x32/emblems/emblem-photos.png new file mode 100644 index 0000000..f7dfd88 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-photos.png differ diff --git a/images/tango/32x32/emblems/emblem-readonly.png b/images/tango/32x32/emblems/emblem-readonly.png new file mode 100644 index 0000000..5e972d1 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-readonly.png differ diff --git a/images/tango/32x32/emblems/emblem-symbolic-link.png b/images/tango/32x32/emblems/emblem-symbolic-link.png new file mode 100644 index 0000000..56ef039 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-symbolic-link.png differ diff --git a/images/tango/32x32/emblems/emblem-system.png b/images/tango/32x32/emblems/emblem-system.png new file mode 100644 index 0000000..abac7e9 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-system.png differ diff --git a/images/tango/32x32/emblems/emblem-unreadable.png b/images/tango/32x32/emblems/emblem-unreadable.png new file mode 100644 index 0000000..b94fc97 Binary files /dev/null and b/images/tango/32x32/emblems/emblem-unreadable.png differ diff --git a/images/tango/32x32/emotes/face-angel.png b/images/tango/32x32/emotes/face-angel.png new file mode 100644 index 0000000..abd0285 Binary files /dev/null and b/images/tango/32x32/emotes/face-angel.png differ diff --git a/images/tango/32x32/emotes/face-crying.png b/images/tango/32x32/emotes/face-crying.png new file mode 100644 index 0000000..d8bc41e Binary files /dev/null and b/images/tango/32x32/emotes/face-crying.png differ diff --git a/images/tango/32x32/emotes/face-devilish.png b/images/tango/32x32/emotes/face-devilish.png new file mode 100644 index 0000000..7a3cb08 Binary files /dev/null and b/images/tango/32x32/emotes/face-devilish.png differ diff --git a/images/tango/32x32/emotes/face-glasses.png b/images/tango/32x32/emotes/face-glasses.png new file mode 100644 index 0000000..1b25394 Binary files /dev/null and b/images/tango/32x32/emotes/face-glasses.png differ diff --git a/images/tango/32x32/emotes/face-grin.png b/images/tango/32x32/emotes/face-grin.png new file mode 100644 index 0000000..2e8268f Binary files /dev/null and b/images/tango/32x32/emotes/face-grin.png differ diff --git a/images/tango/32x32/emotes/face-kiss.png b/images/tango/32x32/emotes/face-kiss.png new file mode 100644 index 0000000..1e3fa54 Binary files /dev/null and b/images/tango/32x32/emotes/face-kiss.png differ diff --git a/images/tango/32x32/emotes/face-monkey.png b/images/tango/32x32/emotes/face-monkey.png new file mode 100644 index 0000000..fb0204a Binary files /dev/null and b/images/tango/32x32/emotes/face-monkey.png differ diff --git a/images/tango/32x32/emotes/face-plain.png b/images/tango/32x32/emotes/face-plain.png new file mode 100644 index 0000000..f8128a6 Binary files /dev/null and b/images/tango/32x32/emotes/face-plain.png differ diff --git a/images/tango/32x32/emotes/face-sad.png b/images/tango/32x32/emotes/face-sad.png new file mode 100644 index 0000000..2fbecde Binary files /dev/null and b/images/tango/32x32/emotes/face-sad.png differ diff --git a/images/tango/32x32/emotes/face-smile-big.png b/images/tango/32x32/emotes/face-smile-big.png new file mode 100644 index 0000000..28704ae Binary files /dev/null and b/images/tango/32x32/emotes/face-smile-big.png differ diff --git a/images/tango/32x32/emotes/face-smile.png b/images/tango/32x32/emotes/face-smile.png new file mode 100644 index 0000000..a52e44d Binary files /dev/null and b/images/tango/32x32/emotes/face-smile.png differ diff --git a/images/tango/32x32/emotes/face-surprise.png b/images/tango/32x32/emotes/face-surprise.png new file mode 100644 index 0000000..af7cef4 Binary files /dev/null and b/images/tango/32x32/emotes/face-surprise.png differ diff --git a/images/tango/32x32/emotes/face-wink.png b/images/tango/32x32/emotes/face-wink.png new file mode 100644 index 0000000..494d785 Binary files /dev/null and b/images/tango/32x32/emotes/face-wink.png differ diff --git a/images/tango/32x32/mimetypes/application-certificate.png b/images/tango/32x32/mimetypes/application-certificate.png new file mode 100644 index 0000000..b75ba54 Binary files /dev/null and b/images/tango/32x32/mimetypes/application-certificate.png differ diff --git a/images/tango/32x32/mimetypes/application-x-executable.png b/images/tango/32x32/mimetypes/application-x-executable.png new file mode 100644 index 0000000..8a150b8 Binary files /dev/null and b/images/tango/32x32/mimetypes/application-x-executable.png differ diff --git a/images/tango/32x32/mimetypes/audio-x-generic.png b/images/tango/32x32/mimetypes/audio-x-generic.png new file mode 100644 index 0000000..c60b595 Binary files /dev/null and b/images/tango/32x32/mimetypes/audio-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/font-x-generic.png b/images/tango/32x32/mimetypes/font-x-generic.png new file mode 100644 index 0000000..b166f4b Binary files /dev/null and b/images/tango/32x32/mimetypes/font-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/image-x-generic.png b/images/tango/32x32/mimetypes/image-x-generic.png new file mode 100644 index 0000000..6f118cd Binary files /dev/null and b/images/tango/32x32/mimetypes/image-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/package-x-generic.png b/images/tango/32x32/mimetypes/package-x-generic.png new file mode 100644 index 0000000..4b55b50 Binary files /dev/null and b/images/tango/32x32/mimetypes/package-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/text-html.png b/images/tango/32x32/mimetypes/text-html.png new file mode 100644 index 0000000..a896697 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-html.png differ diff --git a/images/tango/32x32/mimetypes/text-x-generic-template.png b/images/tango/32x32/mimetypes/text-x-generic-template.png new file mode 100644 index 0000000..5b7e649 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-x-generic-template.png differ diff --git a/images/tango/32x32/mimetypes/text-x-generic.png b/images/tango/32x32/mimetypes/text-x-generic.png new file mode 100644 index 0000000..928a679 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/text-x-script.png b/images/tango/32x32/mimetypes/text-x-script.png new file mode 100644 index 0000000..801dcd6 Binary files /dev/null and b/images/tango/32x32/mimetypes/text-x-script.png differ diff --git a/images/tango/32x32/mimetypes/video-x-generic.png b/images/tango/32x32/mimetypes/video-x-generic.png new file mode 100644 index 0000000..5d6c8d1 Binary files /dev/null and b/images/tango/32x32/mimetypes/video-x-generic.png differ diff --git a/images/tango/32x32/mimetypes/x-office-address-book.png b/images/tango/32x32/mimetypes/x-office-address-book.png new file mode 100644 index 0000000..53dde74 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-address-book.png differ diff --git a/images/tango/32x32/mimetypes/x-office-calendar.png b/images/tango/32x32/mimetypes/x-office-calendar.png new file mode 100644 index 0000000..bc6db5b Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-calendar.png differ diff --git a/images/tango/32x32/mimetypes/x-office-document-template.png b/images/tango/32x32/mimetypes/x-office-document-template.png new file mode 100644 index 0000000..9619241 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-document-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-document.png b/images/tango/32x32/mimetypes/x-office-document.png new file mode 100644 index 0000000..daf84b2 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-document.png differ diff --git a/images/tango/32x32/mimetypes/x-office-drawing-template.png b/images/tango/32x32/mimetypes/x-office-drawing-template.png new file mode 100644 index 0000000..6fc043c Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-drawing-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-drawing.png b/images/tango/32x32/mimetypes/x-office-drawing.png new file mode 100644 index 0000000..5cd66c1 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-drawing.png differ diff --git a/images/tango/32x32/mimetypes/x-office-presentation-template.png b/images/tango/32x32/mimetypes/x-office-presentation-template.png new file mode 100644 index 0000000..bc348f1 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-presentation-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-presentation.png b/images/tango/32x32/mimetypes/x-office-presentation.png new file mode 100644 index 0000000..047355c Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-presentation.png differ diff --git a/images/tango/32x32/mimetypes/x-office-spreadsheet-template.png b/images/tango/32x32/mimetypes/x-office-spreadsheet-template.png new file mode 100644 index 0000000..6a81f36 Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-spreadsheet-template.png differ diff --git a/images/tango/32x32/mimetypes/x-office-spreadsheet.png b/images/tango/32x32/mimetypes/x-office-spreadsheet.png new file mode 100644 index 0000000..c0ccb7a Binary files /dev/null and b/images/tango/32x32/mimetypes/x-office-spreadsheet.png differ diff --git a/images/tango/32x32/places/folder-remote.png b/images/tango/32x32/places/folder-remote.png new file mode 100644 index 0000000..3e0d9ad Binary files /dev/null and b/images/tango/32x32/places/folder-remote.png differ diff --git a/images/tango/32x32/places/folder-saved-search.png b/images/tango/32x32/places/folder-saved-search.png new file mode 100644 index 0000000..88d4541 Binary files /dev/null and b/images/tango/32x32/places/folder-saved-search.png differ diff --git a/images/tango/32x32/places/folder.png b/images/tango/32x32/places/folder.png new file mode 100644 index 0000000..472484f Binary files /dev/null and b/images/tango/32x32/places/folder.png differ diff --git a/images/tango/32x32/places/network-server.png b/images/tango/32x32/places/network-server.png new file mode 100644 index 0000000..1d38e4f Binary files /dev/null and b/images/tango/32x32/places/network-server.png differ diff --git a/images/tango/32x32/places/network-workgroup.png b/images/tango/32x32/places/network-workgroup.png new file mode 100644 index 0000000..4137b3c Binary files /dev/null and b/images/tango/32x32/places/network-workgroup.png differ diff --git a/images/tango/32x32/places/start-here.png b/images/tango/32x32/places/start-here.png new file mode 100644 index 0000000..1e54d01 Binary files /dev/null and b/images/tango/32x32/places/start-here.png differ diff --git a/images/tango/32x32/places/user-desktop.png b/images/tango/32x32/places/user-desktop.png new file mode 100644 index 0000000..57fb177 Binary files /dev/null and b/images/tango/32x32/places/user-desktop.png differ diff --git a/images/tango/32x32/places/user-home.png b/images/tango/32x32/places/user-home.png new file mode 100644 index 0000000..a29bd69 Binary files /dev/null and b/images/tango/32x32/places/user-home.png differ diff --git a/images/tango/32x32/places/user-trash.png b/images/tango/32x32/places/user-trash.png new file mode 100644 index 0000000..9b7a462 Binary files /dev/null and b/images/tango/32x32/places/user-trash.png differ diff --git a/images/tango/32x32/status/audio-volume-high.png b/images/tango/32x32/status/audio-volume-high.png new file mode 100644 index 0000000..70ae43a Binary files /dev/null and b/images/tango/32x32/status/audio-volume-high.png differ diff --git a/images/tango/32x32/status/audio-volume-low.png b/images/tango/32x32/status/audio-volume-low.png new file mode 100644 index 0000000..34546f9 Binary files /dev/null and b/images/tango/32x32/status/audio-volume-low.png differ diff --git a/images/tango/32x32/status/audio-volume-medium.png b/images/tango/32x32/status/audio-volume-medium.png new file mode 100644 index 0000000..4d48a9a Binary files /dev/null and b/images/tango/32x32/status/audio-volume-medium.png differ diff --git a/images/tango/32x32/status/audio-volume-muted.png b/images/tango/32x32/status/audio-volume-muted.png new file mode 100644 index 0000000..a602c85 Binary files /dev/null and b/images/tango/32x32/status/audio-volume-muted.png differ diff --git a/images/tango/32x32/status/battery-caution.png b/images/tango/32x32/status/battery-caution.png new file mode 100644 index 0000000..ede9788 Binary files /dev/null and b/images/tango/32x32/status/battery-caution.png differ diff --git a/images/tango/32x32/status/dialog-error.png b/images/tango/32x32/status/dialog-error.png new file mode 100644 index 0000000..cdd95ba Binary files /dev/null and b/images/tango/32x32/status/dialog-error.png differ diff --git a/images/tango/32x32/status/dialog-information.png b/images/tango/32x32/status/dialog-information.png new file mode 100644 index 0000000..2ac5747 Binary files /dev/null and b/images/tango/32x32/status/dialog-information.png differ diff --git a/images/tango/32x32/status/dialog-warning.png b/images/tango/32x32/status/dialog-warning.png new file mode 100644 index 0000000..7233d45 Binary files /dev/null and b/images/tango/32x32/status/dialog-warning.png differ diff --git a/images/tango/32x32/status/folder-drag-accept.png b/images/tango/32x32/status/folder-drag-accept.png new file mode 100644 index 0000000..2feba85 Binary files /dev/null and b/images/tango/32x32/status/folder-drag-accept.png differ diff --git a/images/tango/32x32/status/folder-open.png b/images/tango/32x32/status/folder-open.png new file mode 100644 index 0000000..901816c Binary files /dev/null and b/images/tango/32x32/status/folder-open.png differ diff --git a/images/tango/32x32/status/folder-visiting.png b/images/tango/32x32/status/folder-visiting.png new file mode 100644 index 0000000..be02b6a Binary files /dev/null and b/images/tango/32x32/status/folder-visiting.png differ diff --git a/images/tango/32x32/status/image-loading.png b/images/tango/32x32/status/image-loading.png new file mode 100644 index 0000000..9442085 Binary files /dev/null and b/images/tango/32x32/status/image-loading.png differ diff --git a/images/tango/32x32/status/image-missing.png b/images/tango/32x32/status/image-missing.png new file mode 100644 index 0000000..27fccd5 Binary files /dev/null and b/images/tango/32x32/status/image-missing.png differ diff --git a/images/tango/32x32/status/mail-attachment.png b/images/tango/32x32/status/mail-attachment.png new file mode 100644 index 0000000..78f1e1c Binary files /dev/null and b/images/tango/32x32/status/mail-attachment.png differ diff --git a/images/tango/32x32/status/network-error.png b/images/tango/32x32/status/network-error.png new file mode 100644 index 0000000..3de26e7 Binary files /dev/null and b/images/tango/32x32/status/network-error.png differ diff --git a/images/tango/32x32/status/network-idle.png b/images/tango/32x32/status/network-idle.png new file mode 100644 index 0000000..dca03af Binary files /dev/null and b/images/tango/32x32/status/network-idle.png differ diff --git a/images/tango/32x32/status/network-offline.png b/images/tango/32x32/status/network-offline.png new file mode 100644 index 0000000..428aaa5 Binary files /dev/null and b/images/tango/32x32/status/network-offline.png differ diff --git a/images/tango/32x32/status/network-receive.png b/images/tango/32x32/status/network-receive.png new file mode 100644 index 0000000..b149c5d Binary files /dev/null and b/images/tango/32x32/status/network-receive.png differ diff --git a/images/tango/32x32/status/network-transmit-receive.png b/images/tango/32x32/status/network-transmit-receive.png new file mode 100644 index 0000000..10ad0ac Binary files /dev/null and b/images/tango/32x32/status/network-transmit-receive.png differ diff --git a/images/tango/32x32/status/network-transmit.png b/images/tango/32x32/status/network-transmit.png new file mode 100644 index 0000000..aaa91b8 Binary files /dev/null and b/images/tango/32x32/status/network-transmit.png differ diff --git a/images/tango/32x32/status/network-wireless-encrypted.png b/images/tango/32x32/status/network-wireless-encrypted.png new file mode 100644 index 0000000..0d4e368 Binary files /dev/null and b/images/tango/32x32/status/network-wireless-encrypted.png differ diff --git a/images/tango/32x32/status/printer-error.png b/images/tango/32x32/status/printer-error.png new file mode 100644 index 0000000..a6aa460 Binary files /dev/null and b/images/tango/32x32/status/printer-error.png differ diff --git a/images/tango/32x32/status/software-update-available.png b/images/tango/32x32/status/software-update-available.png new file mode 100644 index 0000000..aadcb91 Binary files /dev/null and b/images/tango/32x32/status/software-update-available.png differ diff --git a/images/tango/32x32/status/software-update-urgent.png b/images/tango/32x32/status/software-update-urgent.png new file mode 100644 index 0000000..3d67d9e Binary files /dev/null and b/images/tango/32x32/status/software-update-urgent.png differ diff --git a/images/tango/32x32/status/user-trash-full.png b/images/tango/32x32/status/user-trash-full.png new file mode 100644 index 0000000..462ef39 Binary files /dev/null and b/images/tango/32x32/status/user-trash-full.png differ diff --git a/images/tango/32x32/status/weather-clear-night.png b/images/tango/32x32/status/weather-clear-night.png new file mode 100644 index 0000000..aa2714c Binary files /dev/null and b/images/tango/32x32/status/weather-clear-night.png differ diff --git a/images/tango/32x32/status/weather-clear.png b/images/tango/32x32/status/weather-clear.png new file mode 100644 index 0000000..c84e8d3 Binary files /dev/null and b/images/tango/32x32/status/weather-clear.png differ diff --git a/images/tango/32x32/status/weather-few-clouds-night.png b/images/tango/32x32/status/weather-few-clouds-night.png new file mode 100644 index 0000000..62e21d7 Binary files /dev/null and b/images/tango/32x32/status/weather-few-clouds-night.png differ diff --git a/images/tango/32x32/status/weather-few-clouds.png b/images/tango/32x32/status/weather-few-clouds.png new file mode 100644 index 0000000..8c14e0d Binary files /dev/null and b/images/tango/32x32/status/weather-few-clouds.png differ diff --git a/images/tango/32x32/status/weather-overcast.png b/images/tango/32x32/status/weather-overcast.png new file mode 100644 index 0000000..cc22e4c Binary files /dev/null and b/images/tango/32x32/status/weather-overcast.png differ diff --git a/images/tango/32x32/status/weather-severe-alert.png b/images/tango/32x32/status/weather-severe-alert.png new file mode 100644 index 0000000..fb75808 Binary files /dev/null and b/images/tango/32x32/status/weather-severe-alert.png differ diff --git a/images/tango/32x32/status/weather-showers-scattered.png b/images/tango/32x32/status/weather-showers-scattered.png new file mode 100644 index 0000000..6e85a7b Binary files /dev/null and b/images/tango/32x32/status/weather-showers-scattered.png differ diff --git a/images/tango/32x32/status/weather-showers.png b/images/tango/32x32/status/weather-showers.png new file mode 100644 index 0000000..0074348 Binary files /dev/null and b/images/tango/32x32/status/weather-showers.png differ diff --git a/images/tango/32x32/status/weather-snow.png b/images/tango/32x32/status/weather-snow.png new file mode 100644 index 0000000..fef6e4d Binary files /dev/null and b/images/tango/32x32/status/weather-snow.png differ diff --git a/images/tango/32x32/status/weather-storm.png b/images/tango/32x32/status/weather-storm.png new file mode 100644 index 0000000..8a7db96 Binary files /dev/null and b/images/tango/32x32/status/weather-storm.png differ diff --git a/images/tango/index.theme b/images/tango/index.theme new file mode 100644 index 0000000..45b1be8 --- /dev/null +++ b/images/tango/index.theme @@ -0,0 +1,14 @@ +[Icon Theme] +Name=tango +Comment=Original tango icons +Inherits=default +Directories=16x16,22x22,32x32 + +[16x16] +Size=16 + +[22x22] +Size=22 + +[32x32] +Size=32