├── .cirrus.yml ├── .clang-format ├── .github ├── actions │ ├── download-qtc │ │ └── action.yml │ └── reverse-rdp-windows │ │ ├── README.md │ │ └── action.yml └── workflows │ ├── macos.yml │ └── windows.yml ├── .gitignore ├── .tx └── config ├── AUTHORS.txt ├── CONTRIBUTING.md ├── ChangeLog.txt ├── LICENSE_GPL.txt ├── README.md ├── conanfile.py ├── dist ├── AppImage │ └── AppImageBuilder.yml ├── Puzzle.icns ├── Tape.icns ├── Valentina.icns ├── debian │ ├── puzzle.1 │ ├── tape.1 │ └── valentina.1 ├── macos │ ├── bin64 │ │ └── pdftops │ ├── dmg │ │ ├── background.svg │ │ ├── background.tiff │ │ ├── background_multibundle.svg │ │ ├── background_multibundle.tiff │ │ ├── dmg.iconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── en_US.lproj │ │ │ └── LICENSE │ │ └── window_size.scpt │ ├── i-measurements.icns │ ├── k-measurements.icns │ ├── layout.icns │ ├── pattern.icns │ ├── puzzle │ │ ├── Info.plist │ │ └── puzzle.xcassets │ │ │ └── Puzzle.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ ├── s-measurements.icns │ ├── tape │ │ ├── Info.plist │ │ └── tape.xcassets │ │ │ └── Tape.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ ├── valentina-project.xcassets │ │ ├── i-measurements.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── k-measurements.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── layout.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── pattern.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ └── s-measurements.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ └── valentina │ │ ├── Info.plist │ │ └── valentina.xcassets │ │ └── Valentina.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png ├── ua.com.smart-pattern.puzzle.desktop ├── ua.com.smart-pattern.tape.desktop ├── ua.com.smart-pattern.valentina.desktop ├── ua.com.smart-pattern.valentina.metainfo.xml └── win │ ├── i-measurements.ico │ ├── inno │ ├── CodeDependencies.iss │ ├── Languages │ │ ├── Croatian.isl │ │ ├── Greek.isl │ │ └── Icelandic.isl │ └── valentina.iss │ ├── k-measurements.ico │ ├── layout.ico │ ├── msvcr120.dll │ ├── openssl │ ├── win32 │ │ ├── libcrypto-1_1.dll │ │ └── libssl-1_1.dll │ └── win64 │ │ ├── libcrypto-1_1-x64.dll │ │ └── libssl-1_1-x64.dll │ ├── pattern.ico │ ├── pdftops.exe │ ├── s-measurements.ico │ ├── valentina-project.assets │ ├── i-measurements.iconset │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_256x256.png │ │ ├── icon_32x32.png │ │ └── icon_512x512.png │ ├── k-measurements.iconset │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_256x256.png │ │ ├── icon_32x32.png │ │ └── icon_512x512.png │ ├── layout.iconset │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_256x256.png │ │ ├── icon_32x32.png │ │ └── icon_512x512.png │ ├── pattern.iconset │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_256x256.png │ │ ├── icon_32x32.png │ │ └── icon_512x512.png │ └── s-measurements.iconset │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_256x256.png │ │ ├── icon_32x32.png │ │ └── icon_512x512.png │ └── valentina.ico ├── dmg.qbs ├── qbs ├── imports │ ├── VApp.qbs │ ├── VAppleApplicationDiskImage.qbs │ ├── VDynamicLib.qbs │ ├── VLib.qbs │ ├── VTestApp.qbs │ ├── VToolApp.qbs │ └── conan │ │ └── ConanfileProbe.qbs ├── module-providers │ ├── conan.js │ ├── conan.qbs │ └── path-probe.js └── modules │ ├── buildconfig │ └── buildconfig.qbs │ ├── ccache │ └── ccache.qbs │ ├── coverage │ └── coverage.qbs │ ├── ebr │ ├── ebr.qbs │ └── rcc.js │ ├── freedesktop2 │ ├── FreeDesktop2.qbs │ └── freedesktop2.js │ ├── i18n │ └── i18n.qbs │ ├── i18nconfig │ └── i18nconfig.qbs │ ├── macdeployqt │ └── macdeployqt.qbs │ ├── multibundle │ └── multibundle.qbs │ ├── vcs2 │ └── vcs2.qbs │ └── windeployqt │ └── windeployqt.qbs ├── scripts ├── alphabets.py ├── appimage-deploy.sh ├── appveyor-deploy.ps1 ├── cirrus-deploy.sh ├── deploy.py ├── fix_png.sh ├── generate_tool_cursor.sh ├── gitlab_package_upload.sh ├── install-qt.sh ├── install_dump_sysms.ps1 ├── lupdate.sh ├── makedoc.sh ├── man2pdf.sh ├── personaltypes.py ├── sonar-scanner.sh ├── symupload.py ├── treestate.py └── win_ico.sh ├── share ├── DocumentIconBackground.svg ├── Tape-Logo_v1.svg ├── ValDocument.svg ├── ValDocumentMACXStyle.svg ├── ValDocumentOriginalSource.ai ├── Valentina-Logo_v1.png ├── Valentina-Logo_v1.svg ├── Valentina-Logo_v2.png ├── Valentina-Logo_v2.svg ├── ci │ ├── README.md │ ├── conan │ │ └── profiles │ │ │ ├── appimage │ │ │ ├── macos │ │ │ ├── macos_arm │ │ │ ├── windows │ │ │ └── windows_legacy │ ├── pyproject.toml │ └── requirements-ci.txt ├── copyright_template.txt ├── coverity_model.cpp ├── fabric-pattern.svg ├── icons │ ├── 128x128 │ │ ├── apps │ │ │ ├── puzzle.png │ │ │ ├── tape.png │ │ │ └── valentina.png │ │ └── mimetypes │ │ │ ├── application-x-valentina-i-measurements.png │ │ │ ├── application-x-valentina-k-measurements.png │ │ │ ├── application-x-valentina-layout.png │ │ │ ├── application-x-valentina-pattern.png │ │ │ └── application-x-valentina-s-measurements.png │ ├── 256x256 │ │ ├── apps │ │ │ ├── puzzle.png │ │ │ ├── tape.png │ │ │ └── valentina.png │ │ └── mimetypes │ │ │ ├── application-x-valentina-i-measurements.png │ │ │ ├── application-x-valentina-k-measurements.png │ │ │ ├── application-x-valentina-layout.png │ │ │ ├── application-x-valentina-pattern.png │ │ │ └── application-x-valentina-s-measurements.png │ ├── 48x48 │ │ ├── apps │ │ │ ├── puzzle.png │ │ │ ├── tape.png │ │ │ └── valentina.png │ │ └── mimetypes │ │ │ ├── application-x-valentina-i-measurements.png │ │ │ ├── application-x-valentina-k-measurements.png │ │ │ ├── application-x-valentina-layout.png │ │ │ ├── application-x-valentina-pattern.png │ │ │ └── application-x-valentina-s-measurements.png │ ├── 512x512 │ │ ├── apps │ │ │ ├── puzzle.png │ │ │ ├── tape.png │ │ │ └── valentina.png │ │ └── mimetypes │ │ │ ├── application-x-valentina-i-measurements.png │ │ │ ├── application-x-valentina-k-measurements.png │ │ │ ├── application-x-valentina-layout.png │ │ │ ├── application-x-valentina-pattern.png │ │ │ └── application-x-valentina-s-measurements.png │ └── 64x64 │ │ ├── apps │ │ ├── puzzle.png │ │ ├── tape.png │ │ └── valentina.png │ │ └── mimetypes │ │ ├── application-x-valentina-i-measurements.png │ │ ├── application-x-valentina-k-measurements.png │ │ ├── application-x-valentina-layout.png │ │ ├── application-x-valentina-pattern.png │ │ └── application-x-valentina-s-measurements.png ├── mannequin_512x512_individual_table.png ├── mannequin_512x512_standard_table.png ├── mannequin_512x512_standard_table.xcf ├── new-icons │ ├── Valentina.fig │ ├── puzzle.svg │ ├── tape.svg │ ├── valentina-full.svg │ ├── valentina-full │ │ ├── valentina-full_128.png │ │ ├── valentina-full_256.png │ │ ├── valentina-full_48.png │ │ ├── valentina-full_512.png │ │ └── valentina-full_64.png │ └── valentina.svg ├── puzzle.svg ├── qtlogging.ini ├── size-guide.png ├── translations │ ├── Localizable.strings │ ├── translations.qbs │ ├── valentina.ts │ ├── valentina_cs_CZ.ts │ ├── valentina_de_DE.ts │ ├── valentina_el_GR.ts │ ├── valentina_es_ES.ts │ ├── valentina_fi_FI.ts │ ├── valentina_fr_FR.ts │ ├── valentina_he_IL.ts │ ├── valentina_hr_HR.ts │ ├── valentina_hu_HU.ts │ ├── valentina_id_ID.ts │ ├── valentina_it_IT.ts │ ├── valentina_ja_JP.ts │ ├── valentina_nl_NL.ts │ ├── valentina_pl_PL.ts │ ├── valentina_pt_BR.ts │ ├── valentina_pt_PT.ts │ ├── valentina_ro_RO.ts │ ├── valentina_uk_UA.ts │ └── valentina_zh_CN.ts └── valentina_code_style.xml ├── sonar-project.properties ├── src ├── app │ ├── app.qbs │ ├── puzzle │ │ ├── carousel │ │ │ ├── vpcarrousel.cpp │ │ │ ├── vpcarrousel.h │ │ │ ├── vpcarrousel.ui │ │ │ ├── vpcarrouselpiece.cpp │ │ │ ├── vpcarrouselpiece.h │ │ │ ├── vpcarrouselpiecelist.cpp │ │ │ ├── vpcarrouselpiecelist.h │ │ │ ├── vpmimedatapiece.cpp │ │ │ └── vpmimedatapiece.h │ │ ├── dialogs │ │ │ ├── configpages │ │ │ │ ├── puzzlepreferencesconfigurationpage.cpp │ │ │ │ ├── puzzlepreferencesconfigurationpage.h │ │ │ │ ├── puzzlepreferencesconfigurationpage.ui │ │ │ │ ├── puzzlepreferenceslayoutpage.cpp │ │ │ │ ├── puzzlepreferenceslayoutpage.h │ │ │ │ ├── puzzlepreferenceslayoutpage.ui │ │ │ │ ├── puzzlepreferencespathpage.cpp │ │ │ │ ├── puzzlepreferencespathpage.h │ │ │ │ └── puzzlepreferencespathpage.ui │ │ │ ├── dialogpuzzlepreferences.cpp │ │ │ ├── dialogpuzzlepreferences.h │ │ │ ├── dialogpuzzlepreferences.ui │ │ │ ├── dialogsavemanuallayout.cpp │ │ │ ├── dialogsavemanuallayout.h │ │ │ ├── dialogsavemanuallayout.ui │ │ │ ├── vpdialogabout.cpp │ │ │ ├── vpdialogabout.h │ │ │ └── vpdialogabout.ui │ │ ├── layout │ │ │ ├── layoutdef.cpp │ │ │ ├── layoutdef.h │ │ │ ├── vplayout.cpp │ │ │ ├── vplayout.h │ │ │ ├── vplayoutsettings.cpp │ │ │ ├── vplayoutsettings.h │ │ │ ├── vppiece.cpp │ │ │ ├── vppiece.h │ │ │ ├── vpsheet.cpp │ │ │ └── vpsheet.h │ │ ├── main.cpp │ │ ├── puzzle.qbs │ │ ├── scene │ │ │ ├── scenedef.h │ │ │ ├── vpgraphicspiece.cpp │ │ │ ├── vpgraphicspiece.h │ │ │ ├── vpgraphicspiececontrols.cpp │ │ │ ├── vpgraphicspiececontrols.h │ │ │ ├── vpgraphicssheet.cpp │ │ │ ├── vpgraphicssheet.h │ │ │ ├── vpgraphicstilegrid.cpp │ │ │ ├── vpgraphicstilegrid.h │ │ │ ├── vpmaingraphicsview.cpp │ │ │ └── vpmaingraphicsview.h │ │ ├── share │ │ │ └── resources │ │ │ │ ├── puzzle.ico │ │ │ │ ├── puzzle.iconset │ │ │ │ ├── icon_128x128.png │ │ │ │ ├── icon_16x16.png │ │ │ │ ├── icon_256x256.png │ │ │ │ ├── icon_32x32.png │ │ │ │ └── icon_512x512.png │ │ │ │ ├── puzzle.rc │ │ │ │ ├── puzzlecursor.qrc │ │ │ │ ├── puzzlecursor │ │ │ │ ├── collect.png │ │ │ │ └── collect@2x.png │ │ │ │ ├── puzzleicon.qrc │ │ │ │ └── puzzleicon │ │ │ │ ├── 64x64 │ │ │ │ ├── iconLayers.png │ │ │ │ ├── iconLayers@2x.png │ │ │ │ ├── iconLayout.png │ │ │ │ ├── iconLayout@2x.png │ │ │ │ ├── iconProperties.png │ │ │ │ ├── iconProperties@2x.png │ │ │ │ └── logo.png │ │ │ │ ├── dark │ │ │ │ ├── 32x32 │ │ │ │ │ ├── horizontal_grainline.png │ │ │ │ │ ├── horizontal_grainline@2x.png │ │ │ │ │ ├── vertical_grainline.png │ │ │ │ │ └── vertical_grainline@2x.png │ │ │ │ └── 64x64 │ │ │ │ │ ├── iconCurrentPiece.png │ │ │ │ │ ├── iconCurrentPiece@2x.png │ │ │ │ │ ├── iconTiles.png │ │ │ │ │ └── iconTiles@2x.png │ │ │ │ ├── light │ │ │ │ ├── 32x32 │ │ │ │ │ ├── horizontal_grainline.png │ │ │ │ │ ├── horizontal_grainline@2x.png │ │ │ │ │ ├── vertical_grainline.png │ │ │ │ │ └── vertical_grainline@2x.png │ │ │ │ └── 64x64 │ │ │ │ │ ├── iconCurrentPiece.png │ │ │ │ │ ├── iconCurrentPiece@2x.png │ │ │ │ │ ├── iconTiles.png │ │ │ │ │ └── iconTiles@2x.png │ │ │ │ └── svg │ │ │ │ ├── dark │ │ │ │ ├── horizontal_grainline.svg │ │ │ │ ├── icon_current_piece.svg │ │ │ │ ├── icon_tiles.svg │ │ │ │ ├── no_watermark_image.svg │ │ │ │ └── vertical_grainline.svg │ │ │ │ ├── iconProperties.svg │ │ │ │ ├── icon_layers.svg │ │ │ │ ├── icon_layout.svg │ │ │ │ ├── icon_scissors.svg │ │ │ │ ├── icon_scissors_horizontal.svg │ │ │ │ ├── icon_scissors_plotter.svg │ │ │ │ ├── icon_scissors_plotter_horizontal.svg │ │ │ │ ├── icon_scissors_plotter_vertical.svg │ │ │ │ ├── icon_scissors_plotter_vertical2.svg │ │ │ │ ├── icon_scissors_vertical.svg │ │ │ │ ├── light │ │ │ │ ├── horizontal_grainline.svg │ │ │ │ ├── icon_current_piece.svg │ │ │ │ ├── icon_layers.svg │ │ │ │ ├── icon_tiles.svg │ │ │ │ ├── no_watermark_image.svg │ │ │ │ └── vertical_grainline.svg │ │ │ │ ├── roll.svg │ │ │ │ ├── watermark_placeholder.svg │ │ │ │ └── watermark_placeholder_grayscale.svg │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── undocommands │ │ │ ├── vpundoaddsheet.cpp │ │ │ ├── vpundoaddsheet.h │ │ │ ├── vpundocommand.cpp │ │ │ ├── vpundocommand.h │ │ │ ├── vpundomovepieceonsheet.cpp │ │ │ ├── vpundomovepieceonsheet.h │ │ │ ├── vpundooriginmove.cpp │ │ │ ├── vpundooriginmove.h │ │ │ ├── vpundopiecemove.cpp │ │ │ ├── vpundopiecemove.h │ │ │ ├── vpundopiecerotate.cpp │ │ │ ├── vpundopiecerotate.h │ │ │ ├── vpundopiecezvaluemove.cpp │ │ │ ├── vpundopiecezvaluemove.h │ │ │ ├── vpundoremovesheet.cpp │ │ │ └── vpundoremovesheet.h │ │ ├── version.h │ │ ├── vpapplication.cpp │ │ ├── vpapplication.h │ │ ├── vpcommandline.cpp │ │ ├── vpcommandline.h │ │ ├── vpcommands.cpp │ │ ├── vpcommands.h │ │ ├── vpmainwindow.cpp │ │ ├── vpmainwindow.h │ │ ├── vpmainwindow.ui │ │ ├── vpsettings.cpp │ │ ├── vpsettings.h │ │ ├── vptilefactory.cpp │ │ ├── vptilefactory.h │ │ ├── vpuzzleshortcutmanager.cpp │ │ ├── vpuzzleshortcutmanager.h │ │ └── xml │ │ │ ├── vplayoutfilereader.cpp │ │ │ ├── vplayoutfilereader.h │ │ │ ├── vplayoutfilewriter.cpp │ │ │ ├── vplayoutfilewriter.h │ │ │ ├── vplayoutliterals.cpp │ │ │ └── vplayoutliterals.h │ ├── share │ │ ├── collection │ │ │ ├── 0.7_Armhole_adjustment_0.10.val │ │ │ ├── Basic_block_women-2016.val │ │ │ ├── Gent_Jacket_with_tummy.val │ │ │ ├── IMK_Zhaketa_poluprilegayuschego_silueta.val │ │ │ ├── Keiko_skirt.val │ │ │ ├── Lara_Jil.vit │ │ │ ├── MaleShirt │ │ │ │ ├── MaleShirt.val │ │ │ │ └── MaleShirt.vit │ │ │ ├── MensShirtBlock.val │ │ │ ├── Moulage_0.5_armhole_neckline.val │ │ │ ├── PajamaTopWrap2.val │ │ │ ├── Razmernye_priznaki_dlya_zhenskogo_zhaketa.vit │ │ │ ├── Sleeve.val │ │ │ ├── Steampunk_trousers.val │ │ │ ├── Steampunk_trousers.vit │ │ │ ├── Susan.vit │ │ │ ├── TShirt_test.val │ │ │ ├── TestDart.val │ │ │ ├── TestGrid_10cm_2.val │ │ │ ├── TestPuzzle.val │ │ │ ├── Trousers │ │ │ │ ├── Trousers.val │ │ │ │ └── trousers.vit │ │ │ ├── blusa.vit │ │ │ ├── bra.val │ │ │ ├── bra.vit │ │ │ ├── bugs │ │ │ │ ├── IsPointOnLineSegment_RotateTool_issue.val │ │ │ │ ├── Issue_#458.val │ │ │ │ ├── Issue_#493.val │ │ │ │ ├── Issue_#493.vit │ │ │ │ ├── Issue_#515.val │ │ │ │ ├── Issue_#515.vit │ │ │ │ ├── Issue_#603.val │ │ │ │ ├── Issue_#603.vit │ │ │ │ ├── Issue_#604.val │ │ │ │ ├── Issue_#604.vit │ │ │ │ ├── Issue_#609_case1.val │ │ │ │ ├── Issue_#609_case2.val │ │ │ │ ├── Issue_#609_case2.vit │ │ │ │ ├── Issue_#620.val │ │ │ │ ├── Issue_#626.val │ │ │ │ ├── Issue_#627.val │ │ │ │ ├── Issue_#642.val │ │ │ │ ├── Issue_#646.val │ │ │ │ ├── Issue_#647.val │ │ │ │ ├── Issue_#687.val │ │ │ │ ├── Issue_#687.vit │ │ │ │ ├── Issue_#752.val │ │ │ │ ├── Issue_#752.vst │ │ │ │ ├── Issue_#767.val │ │ │ │ ├── Issue_#767.vit │ │ │ │ ├── Issue_#773.val │ │ │ │ ├── Issue_#880.val │ │ │ │ ├── Issue_#883_case1.val │ │ │ │ ├── Issue_#883_case1.vit │ │ │ │ ├── Issue_#923.val │ │ │ │ ├── Issue_#923.vit │ │ │ │ ├── Issue_#923_test7.val │ │ │ │ ├── Issue_#924.val │ │ │ │ ├── Issue_#924.vit │ │ │ │ ├── Issue_#937.val │ │ │ │ ├── Issue_#937_case5.val │ │ │ │ ├── Issue_#937a.val │ │ │ │ ├── Issue_#937a.vit │ │ │ │ ├── Issue_#957.val │ │ │ │ ├── Issue_#963.val │ │ │ │ ├── Steampunk_trousers_issue_#548.val │ │ │ │ ├── fold_line.val │ │ │ │ ├── incorrect_notch.val │ │ │ │ ├── incorrect_notch.vit │ │ │ │ ├── loop_by_intersection.val │ │ │ │ ├── marie_issue_#548.vit │ │ │ │ ├── pointOnCurve.val │ │ │ │ ├── possible_inf_loop.val │ │ │ │ ├── prong_acute_angle.val │ │ │ │ ├── smart_pattern_#145.val │ │ │ │ ├── smart_pattern_#145.vit │ │ │ │ ├── smart_pattern_#184_case1.val │ │ │ │ ├── smart_pattern_#184_case1.vit │ │ │ │ ├── smart_pattern_#184_case2.val │ │ │ │ ├── smart_pattern_#184_case2.vit │ │ │ │ ├── smart_pattern_#36.val │ │ │ │ ├── smart_pattern_#36.vit │ │ │ │ └── smart_pattern_#99.val │ │ │ ├── jacketM1_52-176.val │ │ │ ├── jacketM2_40-146.val │ │ │ ├── jacketM3_40-146.val │ │ │ ├── jacketM4_40-146.val │ │ │ ├── jacketM5_30-110.val │ │ │ ├── jacketM6_30-110.val │ │ │ ├── keiko.vit │ │ │ ├── medidas_eli2015.vit │ │ │ ├── modell_2.val │ │ │ ├── my_calculated_measurements_for_val.vit │ │ │ ├── pantalon_base_Eli.val │ │ │ ├── pantsM1_52-176.val │ │ │ ├── pantsM2_40-146.val │ │ │ ├── pantsM7.val │ │ │ ├── pattern_blusa.val │ │ │ ├── test │ │ │ │ ├── merki27.vit │ │ │ │ ├── notchbug.val │ │ │ │ ├── seamtest1.val │ │ │ │ ├── seamtest2.val │ │ │ │ ├── seamtest3.val │ │ │ │ └── seamtest4.val │ │ │ └── truezerobug.val │ │ ├── svgfonts │ │ │ ├── EMS │ │ │ │ ├── EMSAllure.svg │ │ │ │ ├── EMSBird.svg │ │ │ │ ├── EMSBirdSwashCaps.svg │ │ │ │ ├── EMSBrush.svg │ │ │ │ ├── EMSCapitol.svg │ │ │ │ ├── EMSCasualHand.svg │ │ │ │ ├── EMSDecorousScript.svg │ │ │ │ ├── EMSDelight.svg │ │ │ │ ├── EMSDelightSwashCaps.svg │ │ │ │ ├── EMSElfin.svg │ │ │ │ ├── EMSFelix.svg │ │ │ │ ├── EMSHerculean.svg │ │ │ │ ├── EMSInvite.svg │ │ │ │ ├── EMSLeague.svg │ │ │ │ ├── EMSLittlePrincess.svg │ │ │ │ ├── EMSMistyNight.svg │ │ │ │ ├── EMSNeato.svg │ │ │ │ ├── EMSNixish.svg │ │ │ │ ├── EMSNixishItalic.svg │ │ │ │ ├── EMSOsmotron.svg │ │ │ │ ├── EMSPancakes.svg │ │ │ │ ├── EMSPepita.svg │ │ │ │ ├── EMSQwandry.svg │ │ │ │ ├── EMSReadability.svg │ │ │ │ ├── EMSReadabilityItalic.svg │ │ │ │ ├── EMSSociety.svg │ │ │ │ ├── EMSSpaceRocks.svg │ │ │ │ ├── EMSSwiss.svg │ │ │ │ ├── EMSTech.svg │ │ │ │ └── OFL.txt │ │ │ ├── Hershey │ │ │ │ ├── HersheyAstrology.svg │ │ │ │ ├── HersheyCyrillic.svg │ │ │ │ ├── HersheyGothEnglish.svg │ │ │ │ ├── HersheyGothGerman.svg │ │ │ │ ├── HersheyGothItalian.svg │ │ │ │ ├── HersheySans1.svg │ │ │ │ ├── HersheySansMed.svg │ │ │ │ ├── HersheyScript1.svg │ │ │ │ ├── HersheyScriptMed.svg │ │ │ │ ├── HersheySerifBold.svg │ │ │ │ ├── HersheySerifBoldItalic.svg │ │ │ │ ├── HersheySerifMed.svg │ │ │ │ ├── HersheySerifMedItalic.svg │ │ │ │ └── TwinSans.svg │ │ │ ├── ISF │ │ │ │ ├── ISFScript.svg │ │ │ │ ├── ISFSquare.svg │ │ │ │ ├── ISFSquareItalic.svg │ │ │ │ └── OFL.txt │ │ │ └── Relief │ │ │ │ ├── OFL.txt │ │ │ │ └── ReliefSingleLine-Regular.svg │ │ └── tables │ │ │ └── multisize │ │ │ └── GOST_man_ru.vst │ ├── tape │ │ ├── dialogs │ │ │ ├── configpages │ │ │ │ ├── tapepreferencesconfigurationpage.cpp │ │ │ │ ├── tapepreferencesconfigurationpage.h │ │ │ │ ├── tapepreferencesconfigurationpage.ui │ │ │ │ ├── tapepreferencespathpage.cpp │ │ │ │ ├── tapepreferencespathpage.h │ │ │ │ └── tapepreferencespathpage.ui │ │ │ ├── dialogabouttape.cpp │ │ │ ├── dialogabouttape.h │ │ │ ├── dialogabouttape.ui │ │ │ ├── dialogdimensioncustomnames.cpp │ │ │ ├── dialogdimensioncustomnames.h │ │ │ ├── dialogdimensioncustomnames.ui │ │ │ ├── dialogdimensionlabels.cpp │ │ │ ├── dialogdimensionlabels.h │ │ │ ├── dialogdimensionlabels.ui │ │ │ ├── dialogknownmeasurementscsvcolumns.cpp │ │ │ ├── dialogknownmeasurementscsvcolumns.h │ │ │ ├── dialogknownmeasurementscsvcolumns.ui │ │ │ ├── dialogmdatabase.cpp │ │ │ ├── dialogmdatabase.h │ │ │ ├── dialogmdatabase.ui │ │ │ ├── dialogmeasurementscsvcolumns.cpp │ │ │ ├── dialogmeasurementscsvcolumns.h │ │ │ ├── dialogmeasurementscsvcolumns.ui │ │ │ ├── dialognewmeasurements.cpp │ │ │ ├── dialognewmeasurements.h │ │ │ ├── dialognewmeasurements.ui │ │ │ ├── dialognoknownmeasurements.cpp │ │ │ ├── dialognoknownmeasurements.h │ │ │ ├── dialognoknownmeasurements.ui │ │ │ ├── dialogrestrictdimension.cpp │ │ │ ├── dialogrestrictdimension.h │ │ │ ├── dialogrestrictdimension.ui │ │ │ ├── dialogsetupmultisize.cpp │ │ │ ├── dialogsetupmultisize.h │ │ │ ├── dialogsetupmultisize.ui │ │ │ ├── dialogtapepreferences.cpp │ │ │ ├── dialogtapepreferences.h │ │ │ └── dialogtapepreferences.ui │ │ ├── main.cpp │ │ ├── mapplication.cpp │ │ ├── mapplication.h │ │ ├── share │ │ │ └── resources │ │ │ │ ├── tape.ico │ │ │ │ ├── tape.iconset │ │ │ │ ├── icon_128x128.png │ │ │ │ ├── icon_16x16.png │ │ │ │ ├── icon_256x256.png │ │ │ │ ├── icon_32x32.png │ │ │ │ └── icon_512x512.png │ │ │ │ ├── tape.rc │ │ │ │ ├── tapeicon.qrc │ │ │ │ └── tapeicon │ │ │ │ ├── 16x16 │ │ │ │ ├── info.png │ │ │ │ └── measurement.png │ │ │ │ ├── 24x24 │ │ │ │ ├── orange_plus.png │ │ │ │ ├── padlock_locked.png │ │ │ │ ├── padlock_locked@2x.png │ │ │ │ ├── padlock_opened.png │ │ │ │ ├── padlock_opened@2x.png │ │ │ │ ├── red_plus.png │ │ │ │ ├── separator.png │ │ │ │ └── separator@2x.png │ │ │ │ ├── 64x64 │ │ │ │ └── logo.png │ │ │ │ ├── dark │ │ │ │ └── 24x24 │ │ │ │ │ ├── mannequin.png │ │ │ │ │ └── mannequin@2x.png │ │ │ │ ├── light │ │ │ │ └── 24x24 │ │ │ │ │ ├── mannequin.png │ │ │ │ │ └── mannequin@2x.png │ │ │ │ └── svg │ │ │ │ ├── dark │ │ │ │ └── mannequin.svg │ │ │ │ ├── light │ │ │ │ └── mannequin.svg │ │ │ │ ├── padlock_locked.svg │ │ │ │ └── padlock_opened.svg │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── tape.qbs │ │ ├── tkmmainwindow.cpp │ │ ├── tkmmainwindow.h │ │ ├── tkmmainwindow.ui │ │ ├── tmainwindow.cpp │ │ ├── tmainwindow.h │ │ ├── tmainwindow.ui │ │ ├── version.h │ │ ├── vlitepattern.cpp │ │ ├── vlitepattern.h │ │ ├── vtapesettings.cpp │ │ ├── vtapesettings.h │ │ ├── vtapeshortcutmanager.cpp │ │ └── vtapeshortcutmanager.h │ └── valentina │ │ ├── core │ │ ├── vapplication.cpp │ │ ├── vapplication.h │ │ ├── vcmdexport.cpp │ │ ├── vcmdexport.h │ │ ├── vformulaproperty.cpp │ │ ├── vformulaproperty.h │ │ ├── vformulapropertyeditor.cpp │ │ ├── vformulapropertyeditor.h │ │ ├── vtooloptionspropertybrowser.cpp │ │ ├── vtooloptionspropertybrowser.h │ │ ├── vvalentinashortcutmanager.cpp │ │ └── vvalentinashortcutmanager.h │ │ ├── dialogs │ │ ├── configpages │ │ │ ├── preferencesconfigurationpage.cpp │ │ │ ├── preferencesconfigurationpage.h │ │ │ ├── preferencesconfigurationpage.ui │ │ │ ├── preferencespathpage.cpp │ │ │ ├── preferencespathpage.h │ │ │ ├── preferencespathpage.ui │ │ │ ├── preferencespatternpage.cpp │ │ │ ├── preferencespatternpage.h │ │ │ └── preferencespatternpage.ui │ │ ├── dialogaboutapp.cpp │ │ ├── dialogaboutapp.h │ │ ├── dialogaboutapp.ui │ │ ├── dialogaddbackgroundimage.cpp │ │ ├── dialogaddbackgroundimage.h │ │ ├── dialogaddbackgroundimage.ui │ │ ├── dialogdatetimeformats.cpp │ │ ├── dialogdatetimeformats.h │ │ ├── dialogdatetimeformats.ui │ │ ├── dialogfinalmeasurements.cpp │ │ ├── dialogfinalmeasurements.h │ │ ├── dialogfinalmeasurements.ui │ │ ├── dialoghistory.cpp │ │ ├── dialoghistory.h │ │ ├── dialoghistory.ui │ │ ├── dialogincrements.cpp │ │ ├── dialogincrements.h │ │ ├── dialogincrements.ui │ │ ├── dialogincrementscsvcolumns.cpp │ │ ├── dialogincrementscsvcolumns.h │ │ ├── dialogincrementscsvcolumns.ui │ │ ├── dialogknownmaterials.cpp │ │ ├── dialogknownmaterials.h │ │ ├── dialogknownmaterials.ui │ │ ├── dialoglayoutprogress.cpp │ │ ├── dialoglayoutprogress.h │ │ ├── dialoglayoutprogress.ui │ │ ├── dialoglayoutsettings.cpp │ │ ├── dialoglayoutsettings.h │ │ ├── dialoglayoutsettings.ui │ │ ├── dialognewpattern.cpp │ │ ├── dialognewpattern.h │ │ ├── dialognewpattern.ui │ │ ├── dialogpatternproperties.cpp │ │ ├── dialogpatternproperties.h │ │ ├── dialogpatternproperties.ui │ │ ├── dialogpreferences.cpp │ │ ├── dialogpreferences.h │ │ ├── dialogpreferences.ui │ │ ├── dialogs.h │ │ ├── dialogsavelayout.cpp │ │ ├── dialogsavelayout.h │ │ ├── dialogsavelayout.ui │ │ ├── vwidgetbackgroundimages.cpp │ │ ├── vwidgetbackgroundimages.h │ │ ├── vwidgetbackgroundimages.ui │ │ ├── vwidgetdetails.cpp │ │ ├── vwidgetdetails.h │ │ ├── vwidgetdetails.ui │ │ ├── vwidgetgroups.cpp │ │ ├── vwidgetgroups.h │ │ └── vwidgetgroups.ui │ │ ├── doc │ │ └── doxygen │ │ │ ├── Doxyfile │ │ │ └── logo.png │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── mainwindowsnogui.cpp │ │ ├── mainwindowsnogui.h │ │ ├── share │ │ └── resources │ │ │ ├── toolcursor.qrc │ │ │ ├── toolcursor │ │ │ ├── dark │ │ │ │ ├── along_line_cursor.png │ │ │ │ ├── along_line_cursor@2x.png │ │ │ │ ├── arc_cursor.png │ │ │ │ ├── arc_cursor@2x.png │ │ │ │ ├── arc_cut_cursor.png │ │ │ │ ├── arc_cut_cursor@2x.png │ │ │ │ ├── arc_end_cursor.png │ │ │ │ ├── arc_end_cursor@2x.png │ │ │ │ ├── arc_intersect_axis_cursor.png │ │ │ │ ├── arc_intersect_axis_cursor@2x.png │ │ │ │ ├── arc_start_cursor.png │ │ │ │ ├── arc_start_cursor@2x.png │ │ │ │ ├── arc_with_length_cursor.png │ │ │ │ ├── arc_with_length_cursor@2x.png │ │ │ │ ├── bisector_cursor.png │ │ │ │ ├── bisector_cursor@2x.png │ │ │ │ ├── cubic_bezier_cursor.png │ │ │ │ ├── cubic_bezier_cursor@2x.png │ │ │ │ ├── cubic_bezier_path_cursor.png │ │ │ │ ├── cubic_bezier_path_cursor@2x.png │ │ │ │ ├── curve_intersect_axis_cursor.png │ │ │ │ ├── curve_intersect_axis_cursor@2x.png │ │ │ │ ├── duplicate_detail_cursor.png │ │ │ │ ├── duplicate_detail_cursor@2x.png │ │ │ │ ├── el_arc_cursor.png │ │ │ │ ├── el_arc_cursor@2x.png │ │ │ │ ├── el_arc_with_length_cursor.png │ │ │ │ ├── el_arc_with_length_cursor@2x.png │ │ │ │ ├── flipping_axis_cursor.png │ │ │ │ ├── flipping_axis_cursor@2x.png │ │ │ │ ├── flipping_line_cursor.png │ │ │ │ ├── flipping_line_cursor@2x.png │ │ │ │ ├── graduated_curve_offseting_cursor.png │ │ │ │ ├── graduated_curve_offseting_cursor@2x.png │ │ │ │ ├── group_plus_cursor.png │ │ │ │ ├── group_plus_cursor@2x.png │ │ │ │ ├── height_cursor.png │ │ │ │ ├── height_cursor@2x.png │ │ │ │ ├── insert_node_cursor.png │ │ │ │ ├── insert_node_cursor@2x.png │ │ │ │ ├── intersect_cursor.png │ │ │ │ ├── intersect_cursor@2x.png │ │ │ │ ├── intersection_curves_cursor.png │ │ │ │ ├── intersection_curves_cursor@2x.png │ │ │ │ ├── line_cursor.png │ │ │ │ ├── line_cursor@2x.png │ │ │ │ ├── line_intersect_axis_cursor.png │ │ │ │ ├── line_intersect_axis_cursor@2x.png │ │ │ │ ├── midpoint_cursor.png │ │ │ │ ├── midpoint_cursor@2x.png │ │ │ │ ├── move_cursor.png │ │ │ │ ├── move_cursor@2x.png │ │ │ │ ├── new_detail_cursor.png │ │ │ │ ├── new_detail_cursor@2x.png │ │ │ │ ├── normal_cursor.png │ │ │ │ ├── normal_cursor@2x.png │ │ │ │ ├── parallel_curve_cursor.png │ │ │ │ ├── parallel_curve_cursor@2x.png │ │ │ │ ├── path_cursor.png │ │ │ │ ├── path_cursor@2x.png │ │ │ │ ├── pin_cursor.png │ │ │ │ ├── pin_cursor@2x.png │ │ │ │ ├── place_label_cursor.png │ │ │ │ ├── place_label_cursor@2x.png │ │ │ │ ├── point_from_arc_and_tangent_cursor.png │ │ │ │ ├── point_from_arc_and_tangent_cursor@2x.png │ │ │ │ ├── point_from_circle_and_tangent_cursor.png │ │ │ │ ├── point_from_circle_and_tangent_cursor@2x.png │ │ │ │ ├── point_of_contact_cursor.png │ │ │ │ ├── point_of_contact_cursor@2x.png │ │ │ │ ├── point_of_intersection_arcs_cursor.png │ │ │ │ ├── point_of_intersection_arcs_cursor@2x.png │ │ │ │ ├── point_of_intersection_circles_cursor.png │ │ │ │ ├── point_of_intersection_circles_cursor@2x.png │ │ │ │ ├── point_of_intersection_cursor.png │ │ │ │ ├── point_of_intersection_cursor@2x.png │ │ │ │ ├── rotation_cursor.png │ │ │ │ ├── rotation_cursor@2x.png │ │ │ │ ├── segment_cursor.png │ │ │ │ ├── segment_cursor@2x.png │ │ │ │ ├── shoulder_cursor.png │ │ │ │ ├── shoulder_cursor@2x.png │ │ │ │ ├── splinePath_cursor.png │ │ │ │ ├── splinePath_cursor@2x.png │ │ │ │ ├── splinePath_cut_point_cursor.png │ │ │ │ ├── splinePath_cut_point_cursor@2x.png │ │ │ │ ├── spline_cursor.png │ │ │ │ ├── spline_cursor@2x.png │ │ │ │ ├── spline_cut_point_cursor.png │ │ │ │ ├── spline_cut_point_cursor@2x.png │ │ │ │ ├── triangle_cursor.png │ │ │ │ ├── triangle_cursor@2x.png │ │ │ │ ├── true_darts_cursor.png │ │ │ │ ├── true_darts_cursor@2x.png │ │ │ │ ├── union_cursor.png │ │ │ │ └── union_cursor@2x.png │ │ │ ├── light │ │ │ │ ├── along_line_cursor.png │ │ │ │ ├── along_line_cursor@2x.png │ │ │ │ ├── arc_cursor.png │ │ │ │ ├── arc_cursor@2x.png │ │ │ │ ├── arc_cut_cursor.png │ │ │ │ ├── arc_cut_cursor@2x.png │ │ │ │ ├── arc_end_cursor.png │ │ │ │ ├── arc_end_cursor@2x.png │ │ │ │ ├── arc_intersect_axis_cursor.png │ │ │ │ ├── arc_intersect_axis_cursor@2x.png │ │ │ │ ├── arc_start_cursor.png │ │ │ │ ├── arc_start_cursor@2x.png │ │ │ │ ├── arc_with_length_cursor.png │ │ │ │ ├── arc_with_length_cursor@2x.png │ │ │ │ ├── bisector_cursor.png │ │ │ │ ├── bisector_cursor@2x.png │ │ │ │ ├── cubic_bezier_cursor.png │ │ │ │ ├── cubic_bezier_cursor@2x.png │ │ │ │ ├── cubic_bezier_path_cursor.png │ │ │ │ ├── cubic_bezier_path_cursor@2x.png │ │ │ │ ├── curve_intersect_axis_cursor.png │ │ │ │ ├── curve_intersect_axis_cursor@2x.png │ │ │ │ ├── duplicate_detail_cursor.png │ │ │ │ ├── duplicate_detail_cursor@2x.png │ │ │ │ ├── el_arc_cursor.png │ │ │ │ ├── el_arc_cursor@2x.png │ │ │ │ ├── el_arc_with_length_cursor.png │ │ │ │ ├── el_arc_with_length_cursor@2x.png │ │ │ │ ├── flipping_axis_cursor.png │ │ │ │ ├── flipping_axis_cursor@2x.png │ │ │ │ ├── flipping_line_cursor.png │ │ │ │ ├── flipping_line_cursor@2x.png │ │ │ │ ├── graduated_curve_offseting_cursor.png │ │ │ │ ├── graduated_curve_offseting_cursor@2x.png │ │ │ │ ├── group_plus_cursor.png │ │ │ │ ├── group_plus_cursor@2x.png │ │ │ │ ├── height_cursor.png │ │ │ │ ├── height_cursor@2x.png │ │ │ │ ├── insert_node_cursor.png │ │ │ │ ├── insert_node_cursor@2x.png │ │ │ │ ├── intersect_cursor.png │ │ │ │ ├── intersect_cursor@2x.png │ │ │ │ ├── intersection_curves_cursor.png │ │ │ │ ├── intersection_curves_cursor@2x.png │ │ │ │ ├── line_cursor.png │ │ │ │ ├── line_cursor@2x.png │ │ │ │ ├── line_intersect_axis_cursor.png │ │ │ │ ├── line_intersect_axis_cursor@2x.png │ │ │ │ ├── midpoint_cursor.png │ │ │ │ ├── midpoint_cursor@2x.png │ │ │ │ ├── move_cursor.png │ │ │ │ ├── move_cursor@2x.png │ │ │ │ ├── new_detail_cursor.png │ │ │ │ ├── new_detail_cursor@2x.png │ │ │ │ ├── normal_cursor.png │ │ │ │ ├── normal_cursor@2x.png │ │ │ │ ├── parallel_curve_cursor.png │ │ │ │ ├── parallel_curve_cursor@2x.png │ │ │ │ ├── path_cursor.png │ │ │ │ ├── path_cursor@2x.png │ │ │ │ ├── pin_cursor.png │ │ │ │ ├── pin_cursor@2x.png │ │ │ │ ├── place_label_cursor.png │ │ │ │ ├── place_label_cursor@2x.png │ │ │ │ ├── point_from_arc_and_tangent_cursor.png │ │ │ │ ├── point_from_arc_and_tangent_cursor@2x.png │ │ │ │ ├── point_from_circle_and_tangent_cursor.png │ │ │ │ ├── point_from_circle_and_tangent_cursor@2x.png │ │ │ │ ├── point_of_contact_cursor.png │ │ │ │ ├── point_of_contact_cursor@2x.png │ │ │ │ ├── point_of_intersection_arcs_cursor.png │ │ │ │ ├── point_of_intersection_arcs_cursor@2x.png │ │ │ │ ├── point_of_intersection_circles_cursor.png │ │ │ │ ├── point_of_intersection_circles_cursor@2x.png │ │ │ │ ├── point_of_intersection_cursor.png │ │ │ │ ├── point_of_intersection_cursor@2x.png │ │ │ │ ├── rotation_cursor.png │ │ │ │ ├── rotation_cursor@2x.png │ │ │ │ ├── segment_cursor.png │ │ │ │ ├── segment_cursor@2x.png │ │ │ │ ├── shoulder_cursor.png │ │ │ │ ├── shoulder_cursor@2x.png │ │ │ │ ├── splinePath_cursor.png │ │ │ │ ├── splinePath_cursor@2x.png │ │ │ │ ├── splinePath_cut_point_cursor.png │ │ │ │ ├── splinePath_cut_point_cursor@2x.png │ │ │ │ ├── spline_cursor.png │ │ │ │ ├── spline_cursor@2x.png │ │ │ │ ├── spline_cut_point_cursor.png │ │ │ │ ├── spline_cut_point_cursor@2x.png │ │ │ │ ├── triangle_cursor.png │ │ │ │ ├── triangle_cursor@2x.png │ │ │ │ ├── true_darts_cursor.png │ │ │ │ ├── true_darts_cursor@2x.png │ │ │ │ ├── union_cursor.png │ │ │ │ └── union_cursor@2x.png │ │ │ └── svg │ │ │ │ ├── README.txt │ │ │ │ ├── dark │ │ │ │ ├── along_line_cursor.svg │ │ │ │ ├── arc_cursor.svg │ │ │ │ ├── arc_cut_cursor.svg │ │ │ │ ├── arc_end_cursor.svg │ │ │ │ ├── arc_intersect_axis_cursor.svg │ │ │ │ ├── arc_start_cursor.svg │ │ │ │ ├── arc_with_length_cursor.svg │ │ │ │ ├── bisector_cursor.svg │ │ │ │ ├── cubic_bezier_cursor.svg │ │ │ │ ├── cubic_bezier_path_cursor.svg │ │ │ │ ├── curve_intersect_axis_cursor.svg │ │ │ │ ├── duplicate_detail_cursor.svg │ │ │ │ ├── el_arc_cursor.svg │ │ │ │ ├── el_arc_with_length_cursor.svg │ │ │ │ ├── flipping_axis_cursor.svg │ │ │ │ ├── flipping_line_cursor.svg │ │ │ │ ├── graduated_curve_offseting_cursor.svg │ │ │ │ ├── group_plus_cursor.svg │ │ │ │ ├── height_cursor.svg │ │ │ │ ├── insert_node_cursor.svg │ │ │ │ ├── intersect_cursor.svg │ │ │ │ ├── intersection_curves_cursor.svg │ │ │ │ ├── line_cursor.svg │ │ │ │ ├── line_intersect_axis_cursor.svg │ │ │ │ ├── midpoint_cursor.svg │ │ │ │ ├── move_cursor.svg │ │ │ │ ├── new_detail_cursor.svg │ │ │ │ ├── normal_cursor.svg │ │ │ │ ├── parallel_curve_cursor.svg │ │ │ │ ├── path_cursor.svg │ │ │ │ ├── pin_cursor.svg │ │ │ │ ├── place_label_cursor.svg │ │ │ │ ├── point_from_arc_and_tangent_cursor.svg │ │ │ │ ├── point_from_circle_and_tangent_cursor.svg │ │ │ │ ├── point_of_contact_cursor.svg │ │ │ │ ├── point_of_intersection_arcs_cursor.svg │ │ │ │ ├── point_of_intersection_circles_cursor.svg │ │ │ │ ├── point_of_intersection_cursor.svg │ │ │ │ ├── rotation_cursor.svg │ │ │ │ ├── segment_cursor.svg │ │ │ │ ├── shoulder_cursor.svg │ │ │ │ ├── splinePath_cursor.svg │ │ │ │ ├── splinePath_cut_point_cursor.svg │ │ │ │ ├── spline_cursor.svg │ │ │ │ ├── spline_cut_point_cursor.svg │ │ │ │ ├── triangle_cursor.svg │ │ │ │ ├── true_darts_cursor.svg │ │ │ │ └── union_cursor.svg │ │ │ │ ├── light │ │ │ │ ├── along_line_cursor.svg │ │ │ │ ├── arc_cursor.svg │ │ │ │ ├── arc_cut_cursor.svg │ │ │ │ ├── arc_end_cursor.svg │ │ │ │ ├── arc_intersect_axis_cursor.svg │ │ │ │ ├── arc_start_cursor.svg │ │ │ │ ├── arc_with_length_cursor.svg │ │ │ │ ├── bisector_cursor.svg │ │ │ │ ├── cubic_bezier_cursor.svg │ │ │ │ ├── cubic_bezier_path_cursor.svg │ │ │ │ ├── curve_intersect_axis_cursor.svg │ │ │ │ ├── duplicate_detail_cursor.svg │ │ │ │ ├── el_arc_cursor.svg │ │ │ │ ├── el_arc_with_length_cursor.svg │ │ │ │ ├── flipping_axis_cursor.svg │ │ │ │ ├── flipping_line_cursor.svg │ │ │ │ ├── graduated_curve_offseting_cursor.svg │ │ │ │ ├── group_plus_cursor.svg │ │ │ │ ├── height_cursor.svg │ │ │ │ ├── insert_node_cursor.svg │ │ │ │ ├── intersect_cursor.svg │ │ │ │ ├── intersection_curves_cursor.svg │ │ │ │ ├── line_cursor.svg │ │ │ │ ├── line_intersect_axis_cursor.svg │ │ │ │ ├── midpoint_cursor.svg │ │ │ │ ├── move_cursor.svg │ │ │ │ ├── new_detail_cursor.svg │ │ │ │ ├── normal_cursor.svg │ │ │ │ ├── parallel_curve_cursor.svg │ │ │ │ ├── path_cursor.svg │ │ │ │ ├── pin_cursor.svg │ │ │ │ ├── place_label_cursor.svg │ │ │ │ ├── point_from_arc_and_tangent_cursor.svg │ │ │ │ ├── point_from_circle_and_tangent_cursor.svg │ │ │ │ ├── point_of_contact_cursor.svg │ │ │ │ ├── point_of_intersection_arcs_cursor.svg │ │ │ │ ├── point_of_intersection_circles_cursor.svg │ │ │ │ ├── point_of_intersection_cursor.svg │ │ │ │ ├── rotation_cursor.svg │ │ │ │ ├── segment_cursor.svg │ │ │ │ ├── shoulder_cursor.svg │ │ │ │ ├── splinePath_cursor.svg │ │ │ │ ├── splinePath_cut_point_cursor.svg │ │ │ │ ├── spline_cursor.svg │ │ │ │ ├── spline_cut_point_cursor.svg │ │ │ │ ├── triangle_cursor.svg │ │ │ │ ├── true_darts_cursor.svg │ │ │ │ └── union_cursor.svg │ │ │ │ ├── template_cursor_dark.svg │ │ │ │ └── template_cursor_light.svg │ │ │ ├── toolicon.qrc │ │ │ ├── toolicon │ │ │ ├── dark │ │ │ │ ├── along_line.png │ │ │ │ ├── along_line@2x.png │ │ │ │ ├── arc.png │ │ │ │ ├── arc@2x.png │ │ │ │ ├── arc_cut.png │ │ │ │ ├── arc_cut@2x.png │ │ │ │ ├── arc_end.png │ │ │ │ ├── arc_end@2x.png │ │ │ │ ├── arc_intersect_axis.png │ │ │ │ ├── arc_intersect_axis@2x.png │ │ │ │ ├── arc_start.png │ │ │ │ ├── arc_start@2x.png │ │ │ │ ├── arc_with_length.png │ │ │ │ ├── arc_with_length@2x.png │ │ │ │ ├── bisector.png │ │ │ │ ├── bisector@2x.png │ │ │ │ ├── cubic_bezier.png │ │ │ │ ├── cubic_bezier@2x.png │ │ │ │ ├── cubic_bezier_path.png │ │ │ │ ├── cubic_bezier_path@2x.png │ │ │ │ ├── curve_intersect_axis.png │ │ │ │ ├── curve_intersect_axis@2x.png │ │ │ │ ├── duplicate_detail.png │ │ │ │ ├── duplicate_detail@2x.png │ │ │ │ ├── el_arc.png │ │ │ │ ├── el_arc@2x.png │ │ │ │ ├── el_arc_with_length.png │ │ │ │ ├── el_arc_with_length@2x.png │ │ │ │ ├── flipping_axis.png │ │ │ │ ├── flipping_axis@2x.png │ │ │ │ ├── flipping_line.png │ │ │ │ ├── flipping_line@2x.png │ │ │ │ ├── graduated_curve_offseting.png │ │ │ │ ├── graduated_curve_offseting@2x.png │ │ │ │ ├── group_plus.png │ │ │ │ ├── group_plus@2x.png │ │ │ │ ├── height.png │ │ │ │ ├── height@2x.png │ │ │ │ ├── insert_node.png │ │ │ │ ├── insert_node@2x.png │ │ │ │ ├── intersect.png │ │ │ │ ├── intersect@2x.png │ │ │ │ ├── intersection_curves.png │ │ │ │ ├── intersection_curves@2x.png │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── line_intersect_axis.png │ │ │ │ ├── line_intersect_axis@2x.png │ │ │ │ ├── midpoint.png │ │ │ │ ├── midpoint@2x.png │ │ │ │ ├── move.png │ │ │ │ ├── move@2x.png │ │ │ │ ├── new_detail.png │ │ │ │ ├── new_detail@2x.png │ │ │ │ ├── normal.png │ │ │ │ ├── normal@2x.png │ │ │ │ ├── parallel_curve.png │ │ │ │ ├── parallel_curve@2x.png │ │ │ │ ├── path.png │ │ │ │ ├── path@2x.png │ │ │ │ ├── pin.png │ │ │ │ ├── pin@2x.png │ │ │ │ ├── place_label.png │ │ │ │ ├── place_label@2x.png │ │ │ │ ├── point_from_arc_and_tangent.png │ │ │ │ ├── point_from_arc_and_tangent@2x.png │ │ │ │ ├── point_from_circle_and_tangent.png │ │ │ │ ├── point_from_circle_and_tangent@2x.png │ │ │ │ ├── point_of_contact.png │ │ │ │ ├── point_of_contact@2x.png │ │ │ │ ├── point_of_intersection.png │ │ │ │ ├── point_of_intersection@2x.png │ │ │ │ ├── point_of_intersection_arcs.png │ │ │ │ ├── point_of_intersection_arcs@2x.png │ │ │ │ ├── point_of_intersection_circles.png │ │ │ │ ├── point_of_intersection_circles@2x.png │ │ │ │ ├── rotation.png │ │ │ │ ├── rotation@2x.png │ │ │ │ ├── segment.png │ │ │ │ ├── segment@2x.png │ │ │ │ ├── shoulder.png │ │ │ │ ├── shoulder@2x.png │ │ │ │ ├── spline.png │ │ │ │ ├── spline@2x.png │ │ │ │ ├── splinePath.png │ │ │ │ ├── splinePath@2x.png │ │ │ │ ├── splinePath_cut_point.png │ │ │ │ ├── splinePath_cut_point@2x.png │ │ │ │ ├── spline_cut_point.png │ │ │ │ ├── spline_cut_point@2x.png │ │ │ │ ├── triangle.png │ │ │ │ ├── triangle@2x.png │ │ │ │ ├── true_darts.png │ │ │ │ ├── true_darts@2x.png │ │ │ │ ├── union.png │ │ │ │ └── union@2x.png │ │ │ ├── light │ │ │ │ ├── along_line.png │ │ │ │ ├── along_line@2x.png │ │ │ │ ├── arc.png │ │ │ │ ├── arc@2x.png │ │ │ │ ├── arc_cut.png │ │ │ │ ├── arc_cut@2x.png │ │ │ │ ├── arc_end.png │ │ │ │ ├── arc_end@2x.png │ │ │ │ ├── arc_intersect_axis.png │ │ │ │ ├── arc_intersect_axis@2x.png │ │ │ │ ├── arc_start.png │ │ │ │ ├── arc_start@2x.png │ │ │ │ ├── arc_with_length.png │ │ │ │ ├── arc_with_length@2x.png │ │ │ │ ├── bisector.png │ │ │ │ ├── bisector@2x.png │ │ │ │ ├── cubic_bezier.png │ │ │ │ ├── cubic_bezier@2x.png │ │ │ │ ├── cubic_bezier_path.png │ │ │ │ ├── cubic_bezier_path@2x.png │ │ │ │ ├── curve_intersect_axis.png │ │ │ │ ├── curve_intersect_axis@2x.png │ │ │ │ ├── duplicate_detail.png │ │ │ │ ├── duplicate_detail@2x.png │ │ │ │ ├── el_arc.png │ │ │ │ ├── el_arc@2x.png │ │ │ │ ├── el_arc_with_length.png │ │ │ │ ├── el_arc_with_length@2x.png │ │ │ │ ├── flipping_axis.png │ │ │ │ ├── flipping_axis@2x.png │ │ │ │ ├── flipping_line.png │ │ │ │ ├── flipping_line@2x.png │ │ │ │ ├── graduated_curve_offseting.png │ │ │ │ ├── graduated_curve_offseting@2x.png │ │ │ │ ├── group_plus.png │ │ │ │ ├── group_plus@2x.png │ │ │ │ ├── height.png │ │ │ │ ├── height@2x.png │ │ │ │ ├── insert_node.png │ │ │ │ ├── insert_node@2x.png │ │ │ │ ├── intersect.png │ │ │ │ ├── intersect@2x.png │ │ │ │ ├── intersection_curves.png │ │ │ │ ├── intersection_curves@2x.png │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── line_intersect_axis.png │ │ │ │ ├── line_intersect_axis@2x.png │ │ │ │ ├── midpoint.png │ │ │ │ ├── midpoint@2x.png │ │ │ │ ├── move.png │ │ │ │ ├── move@2x.png │ │ │ │ ├── new_detail.png │ │ │ │ ├── new_detail@2x.png │ │ │ │ ├── normal.png │ │ │ │ ├── normal@2x.png │ │ │ │ ├── parallel_curve.png │ │ │ │ ├── parallel_curve@2x.png │ │ │ │ ├── path.png │ │ │ │ ├── path@2x.png │ │ │ │ ├── pin.png │ │ │ │ ├── pin@2x.png │ │ │ │ ├── place_label.png │ │ │ │ ├── place_label@2x.png │ │ │ │ ├── point_from_arc_and_tangent.png │ │ │ │ ├── point_from_arc_and_tangent@2x.png │ │ │ │ ├── point_from_circle_and_tangent.png │ │ │ │ ├── point_from_circle_and_tangent@2x.png │ │ │ │ ├── point_of_contact.png │ │ │ │ ├── point_of_contact@2x.png │ │ │ │ ├── point_of_intersection.png │ │ │ │ ├── point_of_intersection@2x.png │ │ │ │ ├── point_of_intersection_arcs.png │ │ │ │ ├── point_of_intersection_arcs@2x.png │ │ │ │ ├── point_of_intersection_circles.png │ │ │ │ ├── point_of_intersection_circles@2x.png │ │ │ │ ├── rotation.png │ │ │ │ ├── rotation@2x.png │ │ │ │ ├── segment.png │ │ │ │ ├── segment@2x.png │ │ │ │ ├── shoulder.png │ │ │ │ ├── shoulder@2x.png │ │ │ │ ├── spline.png │ │ │ │ ├── spline@2x.png │ │ │ │ ├── splinePath.png │ │ │ │ ├── splinePath@2x.png │ │ │ │ ├── splinePath_cut_point.png │ │ │ │ ├── splinePath_cut_point@2x.png │ │ │ │ ├── spline_cut_point.png │ │ │ │ ├── spline_cut_point@2x.png │ │ │ │ ├── triangle.png │ │ │ │ ├── triangle@2x.png │ │ │ │ ├── true_darts.png │ │ │ │ ├── true_darts@2x.png │ │ │ │ ├── union.png │ │ │ │ └── union@2x.png │ │ │ ├── svg-dark │ │ │ │ ├── along_line.svg │ │ │ │ ├── arc.svg │ │ │ │ ├── arc_cut.svg │ │ │ │ ├── arc_end.svg │ │ │ │ ├── arc_intersect_axis.svg │ │ │ │ ├── arc_start.svg │ │ │ │ ├── arc_with_length.svg │ │ │ │ ├── bisector.svg │ │ │ │ ├── cubic_bezier.svg │ │ │ │ ├── cubic_bezier_path.svg │ │ │ │ ├── curve_intersect_axis.svg │ │ │ │ ├── duplicate_detail.svg │ │ │ │ ├── el_arc.svg │ │ │ │ ├── el_arc_with_length.svg │ │ │ │ ├── flipping_axis.svg │ │ │ │ ├── flipping_line.svg │ │ │ │ ├── graduated_curve_offseting.svg │ │ │ │ ├── group_plus.svg │ │ │ │ ├── height.svg │ │ │ │ ├── insert_node.svg │ │ │ │ ├── intersect.svg │ │ │ │ ├── intersection_curves.svg │ │ │ │ ├── line.svg │ │ │ │ ├── line_intersect_axis.svg │ │ │ │ ├── midpoint.svg │ │ │ │ ├── move.svg │ │ │ │ ├── new_detail.svg │ │ │ │ ├── normal.svg │ │ │ │ ├── parallel_curve.svg │ │ │ │ ├── path.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── place_label.svg │ │ │ │ ├── point_from_arc_and_tangent.svg │ │ │ │ ├── point_from_circle_and_tangent.svg │ │ │ │ ├── point_of_contact.svg │ │ │ │ ├── point_of_intersection.svg │ │ │ │ ├── point_of_intersection_arcs.svg │ │ │ │ ├── point_of_intersection_circles.svg │ │ │ │ ├── rotation.svg │ │ │ │ ├── segment.svg │ │ │ │ ├── shoulder.svg │ │ │ │ ├── spline.svg │ │ │ │ ├── splinePath.svg │ │ │ │ ├── splinePath_cut_point.svg │ │ │ │ ├── spline_cut_point.svg │ │ │ │ ├── triangle.svg │ │ │ │ ├── true_darts.svg │ │ │ │ └── union.svg │ │ │ └── svg-light │ │ │ │ ├── along_line.svg │ │ │ │ ├── arc.svg │ │ │ │ ├── arc_cut.svg │ │ │ │ ├── arc_end.svg │ │ │ │ ├── arc_intersect_axis.svg │ │ │ │ ├── arc_start.svg │ │ │ │ ├── arc_with_length.svg │ │ │ │ ├── bisector.svg │ │ │ │ ├── cubic_bezier.svg │ │ │ │ ├── cubic_bezier_path.svg │ │ │ │ ├── curve_intersect_axis.svg │ │ │ │ ├── duplicate_detail.svg │ │ │ │ ├── el_arc.svg │ │ │ │ ├── el_arc_with_length.svg │ │ │ │ ├── flipping_axis.svg │ │ │ │ ├── flipping_line.svg │ │ │ │ ├── graduated_curve_offseting.svg │ │ │ │ ├── group_plus.svg │ │ │ │ ├── height.svg │ │ │ │ ├── insert_node.svg │ │ │ │ ├── intersect.svg │ │ │ │ ├── intersection_curves.svg │ │ │ │ ├── line.svg │ │ │ │ ├── line_intersect_axis.svg │ │ │ │ ├── midpoint.svg │ │ │ │ ├── move.svg │ │ │ │ ├── new_detail.svg │ │ │ │ ├── normal.svg │ │ │ │ ├── parallel_curve.svg │ │ │ │ ├── path.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── place_label.svg │ │ │ │ ├── point_from_arc_and_tangent.svg │ │ │ │ ├── point_from_circle_and_tangent.svg │ │ │ │ ├── point_of_contact.svg │ │ │ │ ├── point_of_intersection.svg │ │ │ │ ├── point_of_intersection_arcs.svg │ │ │ │ ├── point_of_intersection_circles.svg │ │ │ │ ├── rotation.svg │ │ │ │ ├── segment.svg │ │ │ │ ├── shoulder.svg │ │ │ │ ├── spline.svg │ │ │ │ ├── splinePath.svg │ │ │ │ ├── splinePath_cut_point.svg │ │ │ │ ├── spline_cut_point.svg │ │ │ │ ├── triangle.svg │ │ │ │ ├── true_darts.svg │ │ │ │ └── union.svg │ │ │ ├── valentina.ico │ │ │ ├── valentina.iconset │ │ │ ├── icon_128x128.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_32x32.png │ │ │ └── icon_512x512.png │ │ │ └── valentina.rc │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── valentina.qbs │ │ ├── version.h │ │ └── xml │ │ ├── vpattern.cpp │ │ └── vpattern.h ├── libs │ ├── fervor │ │ ├── LICENSE │ │ ├── data │ │ │ └── Appcast.xml │ │ ├── fervor.qbs │ │ ├── fvavailableupdate.cpp │ │ ├── fvavailableupdate.h │ │ ├── fvupdater.cpp │ │ ├── fvupdater.h │ │ ├── fvupdatewindow.cpp │ │ ├── fvupdatewindow.h │ │ ├── fvupdatewindow.ui │ │ ├── stable.cpp │ │ └── stable.h │ ├── ifc │ │ ├── exception │ │ │ ├── vexceptionbadid.cpp │ │ │ ├── vexceptionbadid.h │ │ │ ├── vexceptionconversionerror.cpp │ │ │ ├── vexceptionconversionerror.h │ │ │ ├── vexceptionemptyparameter.cpp │ │ │ ├── vexceptionemptyparameter.h │ │ │ ├── vexceptioninvalidhistory.cpp │ │ │ ├── vexceptioninvalidhistory.h │ │ │ ├── vexceptioninvalidnotch.cpp │ │ │ ├── vexceptioninvalidnotch.h │ │ │ ├── vexceptionobjecterror.cpp │ │ │ ├── vexceptionobjecterror.h │ │ │ ├── vexceptionterminatedposition.cpp │ │ │ ├── vexceptionterminatedposition.h │ │ │ ├── vexceptionundo.cpp │ │ │ ├── vexceptionundo.h │ │ │ ├── vexceptionwrongid.cpp │ │ │ └── vexceptionwrongid.h │ │ ├── ifc.qbs │ │ ├── ifcdef.cpp │ │ ├── ifcdef.h │ │ ├── schema.qrc │ │ ├── schema │ │ │ ├── individual_measurements │ │ │ │ ├── v0.2.0.xsd │ │ │ │ ├── v0.3.0.xsd │ │ │ │ ├── v0.3.1.xsd │ │ │ │ ├── v0.3.2.xsd │ │ │ │ ├── v0.3.3.xsd │ │ │ │ ├── v0.4.0.xsd │ │ │ │ ├── v0.5.0.xsd │ │ │ │ ├── v0.5.1.xsd │ │ │ │ ├── v0.5.2.xsd │ │ │ │ ├── v0.6.0.xsd │ │ │ │ ├── v0.6.1.xsd │ │ │ │ └── v0.6.2.xsd │ │ │ ├── known_measurements │ │ │ │ └── v1.0.0.xsd │ │ │ ├── label_template │ │ │ │ └── v1.0.0.xsd │ │ │ ├── layout │ │ │ │ ├── v0.1.0.xsd │ │ │ │ ├── v0.1.1.xsd │ │ │ │ ├── v0.1.2.xsd │ │ │ │ ├── v0.1.3.xsd │ │ │ │ ├── v0.1.4.xsd │ │ │ │ ├── v0.1.5.xsd │ │ │ │ ├── v0.1.6.xsd │ │ │ │ ├── v0.1.7.xsd │ │ │ │ ├── v0.1.8.xsd │ │ │ │ ├── v0.1.9.xsd │ │ │ │ └── v0.2.0.xsd │ │ │ ├── multisize_measurements │ │ │ │ ├── v0.3.0.xsd │ │ │ │ ├── v0.4.0.xsd │ │ │ │ ├── v0.4.1.xsd │ │ │ │ ├── v0.4.2.xsd │ │ │ │ ├── v0.4.3.xsd │ │ │ │ ├── v0.4.4.xsd │ │ │ │ ├── v0.5.0.xsd │ │ │ │ ├── v0.5.1.xsd │ │ │ │ ├── v0.5.2.xsd │ │ │ │ ├── v0.5.3.xsd │ │ │ │ ├── v0.5.4.xsd │ │ │ │ ├── v0.6.0.xsd │ │ │ │ ├── v0.6.1.xsd │ │ │ │ └── v0.6.2.xsd │ │ │ ├── pattern │ │ │ │ ├── v0.1.4.xsd │ │ │ │ ├── v0.2.0.xsd │ │ │ │ ├── v0.2.1.xsd │ │ │ │ ├── v0.2.2.xsd │ │ │ │ ├── v0.2.3.xsd │ │ │ │ ├── v0.2.4.xsd │ │ │ │ ├── v0.2.5.xsd │ │ │ │ ├── v0.2.6.xsd │ │ │ │ ├── v0.2.7.xsd │ │ │ │ ├── v0.3.0.xsd │ │ │ │ ├── v0.3.1.xsd │ │ │ │ ├── v0.3.2.xsd │ │ │ │ ├── v0.3.3.xsd │ │ │ │ ├── v0.3.4.xsd │ │ │ │ ├── v0.3.5.xsd │ │ │ │ ├── v0.3.6.xsd │ │ │ │ ├── v0.3.7.xsd │ │ │ │ ├── v0.3.8.xsd │ │ │ │ ├── v0.3.9.xsd │ │ │ │ ├── v0.4.0.xsd │ │ │ │ ├── v0.4.1.xsd │ │ │ │ ├── v0.4.2.xsd │ │ │ │ ├── v0.4.3.xsd │ │ │ │ ├── v0.4.4.xsd │ │ │ │ ├── v0.4.5.xsd │ │ │ │ ├── v0.4.6.xsd │ │ │ │ ├── v0.4.7.xsd │ │ │ │ ├── v0.4.8.xsd │ │ │ │ ├── v0.5.0.xsd │ │ │ │ ├── v0.5.1.xsd │ │ │ │ ├── v0.6.0.xsd │ │ │ │ ├── v0.6.1.xsd │ │ │ │ ├── v0.6.2.xsd │ │ │ │ ├── v0.6.3.xsd │ │ │ │ ├── v0.6.4.xsd │ │ │ │ ├── v0.6.5.xsd │ │ │ │ ├── v0.6.6.xsd │ │ │ │ ├── v0.7.0.xsd │ │ │ │ ├── v0.7.1.xsd │ │ │ │ ├── v0.7.10.xsd │ │ │ │ ├── v0.7.11.xsd │ │ │ │ ├── v0.7.12.xsd │ │ │ │ ├── v0.7.13.xsd │ │ │ │ ├── v0.7.2.xsd │ │ │ │ ├── v0.7.3.xsd │ │ │ │ ├── v0.7.4.xsd │ │ │ │ ├── v0.7.5.xsd │ │ │ │ ├── v0.7.6.xsd │ │ │ │ ├── v0.7.7.xsd │ │ │ │ ├── v0.7.8.xsd │ │ │ │ ├── v0.7.9.xsd │ │ │ │ ├── v0.8.0.xsd │ │ │ │ ├── v0.8.1.xsd │ │ │ │ ├── v0.8.10.xsd │ │ │ │ ├── v0.8.11.xsd │ │ │ │ ├── v0.8.12.xsd │ │ │ │ ├── v0.8.13.xsd │ │ │ │ ├── v0.8.2.xsd │ │ │ │ ├── v0.8.3.xsd │ │ │ │ ├── v0.8.4.xsd │ │ │ │ ├── v0.8.5.xsd │ │ │ │ ├── v0.8.6.xsd │ │ │ │ ├── v0.8.7.xsd │ │ │ │ ├── v0.8.8.xsd │ │ │ │ ├── v0.8.9.xsd │ │ │ │ ├── v0.9.0.xsd │ │ │ │ ├── v0.9.1.xsd │ │ │ │ ├── v0.9.2.xsd │ │ │ │ ├── v0.9.3.xsd │ │ │ │ ├── v0.9.4.xsd │ │ │ │ ├── v0.9.5.xsd │ │ │ │ ├── v0.9.6.xsd │ │ │ │ ├── v0.9.7.xsd │ │ │ │ ├── v0.9.8.xsd │ │ │ │ ├── v0.9.9.xsd │ │ │ │ └── v1.0.0.xsd │ │ │ └── watermark │ │ │ │ ├── v1.0.0.xsd │ │ │ │ └── v1.1.0.xsd │ │ ├── stable.cpp │ │ ├── stable.h │ │ └── xml │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── vabstractconverter.cpp │ │ │ ├── vabstractconverter.h │ │ │ ├── vabstractmconverter.cpp │ │ │ ├── vabstractmconverter.h │ │ │ ├── vabstractpattern.cpp │ │ │ ├── vabstractpattern.h │ │ │ ├── vbackgroundpatternimage.cpp │ │ │ ├── vbackgroundpatternimage.h │ │ │ ├── vdomdocument.cpp │ │ │ ├── vdomdocument.h │ │ │ ├── vknownmeasurementsconverter.cpp │ │ │ ├── vknownmeasurementsconverter.h │ │ │ ├── vlabeltemplateconverter.cpp │ │ │ ├── vlabeltemplateconverter.h │ │ │ ├── vlayoutconverter.cpp │ │ │ ├── vlayoutconverter.h │ │ │ ├── vparsererrorhandler.cpp │ │ │ ├── vparsererrorhandler.h │ │ │ ├── vpatternconverter.cpp │ │ │ ├── vpatternconverter.h │ │ │ ├── vpatternimage.cpp │ │ │ ├── vpatternimage.h │ │ │ ├── vtoolrecord.cpp │ │ │ ├── vtoolrecord.h │ │ │ ├── vvitconverter.cpp │ │ │ ├── vvitconverter.h │ │ │ ├── vvstconverter.cpp │ │ │ ├── vvstconverter.h │ │ │ ├── vwatermarkconverter.cpp │ │ │ └── vwatermarkconverter.h │ ├── libs.qbs │ ├── qmuparser │ │ ├── LICENSE_BSD.txt │ │ ├── doc │ │ │ └── doxygen │ │ │ │ └── Doxyfile │ │ ├── make_unique.h │ │ ├── qmudef.cpp │ │ ├── qmudef.h │ │ ├── qmuformulabase.cpp │ │ ├── qmuformulabase.h │ │ ├── qmuparser.cpp │ │ ├── qmuparser.h │ │ ├── qmuparser.qbs │ │ ├── qmuparser_global.h │ │ ├── qmuparserbase.cpp │ │ ├── qmuparserbase.h │ │ ├── qmuparserbytecode.cpp │ │ ├── qmuparserbytecode.h │ │ ├── qmuparsercallback.cpp │ │ ├── qmuparsercallback.h │ │ ├── qmuparsercallback_p.h │ │ ├── qmuparserdef.h │ │ ├── qmuparsererror.cpp │ │ ├── qmuparsererror.h │ │ ├── qmuparserfixes.h │ │ ├── qmuparsertest.cpp │ │ ├── qmuparsertest.h │ │ ├── qmuparsertoken.h │ │ ├── qmuparsertokenreader.cpp │ │ ├── qmuparsertokenreader.h │ │ ├── qmutokenparser.cpp │ │ ├── qmutokenparser.h │ │ ├── qmutranslation.cpp │ │ ├── qmutranslation.h │ │ ├── stable.cpp │ │ └── stable.h │ ├── vdxf │ │ ├── dxfdef.cpp │ │ ├── dxfdef.h │ │ ├── dxiface.cpp │ │ ├── dxiface.h │ │ ├── libdxfrw │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── drw_base.cpp │ │ │ ├── drw_base.h │ │ │ ├── drw_classes.cpp │ │ │ ├── drw_classes.h │ │ │ ├── drw_entities.cpp │ │ │ ├── drw_entities.h │ │ │ ├── drw_header.cpp │ │ │ ├── drw_header.h │ │ │ ├── drw_interface.h │ │ │ ├── drw_objects.cpp │ │ │ ├── drw_objects.h │ │ │ ├── drw_reserve.h │ │ │ ├── intern │ │ │ │ ├── drw_dbg.cpp │ │ │ │ ├── drw_dbg.h │ │ │ │ ├── drw_textcodec.cpp │ │ │ │ ├── drw_textcodec.h │ │ │ │ ├── dxfreader.cpp │ │ │ │ ├── dxfreader.h │ │ │ │ ├── dxfwriter.cpp │ │ │ │ ├── dxfwriter.h │ │ │ │ └── make_unique.h │ │ │ ├── libdxfrw.cpp │ │ │ ├── libdxfrw.h │ │ │ └── main_doc.h │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── vdxf.qbs │ │ ├── vdxfengine.cpp │ │ ├── vdxfengine.h │ │ ├── vdxfpaintdevice.cpp │ │ └── vdxfpaintdevice.h │ ├── vformat │ │ ├── knownmeasurements │ │ │ ├── vknownmeasurement.h │ │ │ ├── vknownmeasurements.cpp │ │ │ ├── vknownmeasurements.h │ │ │ ├── vknownmeasurements_p.h │ │ │ ├── vknownmeasurementsdatabase.cpp │ │ │ ├── vknownmeasurementsdatabase.h │ │ │ ├── vknownmeasurementsdocument.cpp │ │ │ └── vknownmeasurementsdocument.h │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── vdimensions.cpp │ │ ├── vdimensions.h │ │ ├── vformat.qbs │ │ ├── vlabeltemplate.cpp │ │ ├── vlabeltemplate.h │ │ ├── vmeasurements.cpp │ │ ├── vmeasurements.h │ │ ├── vpatternrecipe.cpp │ │ ├── vpatternrecipe.h │ │ ├── vsinglelineoutlinechar.cpp │ │ ├── vsinglelineoutlinechar.h │ │ ├── vwatermark.cpp │ │ └── vwatermark.h │ ├── vganalytics │ │ ├── def.h │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── vganalytics.cpp │ │ ├── vganalytics.h │ │ ├── vganalytics.qbs │ │ ├── vganalyticsworker.cpp │ │ └── vganalyticsworker.h │ ├── vgeometry │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── vabstractarc.cpp │ │ ├── vabstractarc.h │ │ ├── vabstractarc_p.h │ │ ├── vabstractbezier.cpp │ │ ├── vabstractbezier.h │ │ ├── vabstractcubicbezier.cpp │ │ ├── vabstractcubicbezier.h │ │ ├── vabstractcubicbezierpath.cpp │ │ ├── vabstractcubicbezierpath.h │ │ ├── vabstractcurve.cpp │ │ ├── vabstractcurve.h │ │ ├── vabstractcurve_p.h │ │ ├── varc.cpp │ │ ├── varc.h │ │ ├── varc_p.h │ │ ├── vcubicbezier.cpp │ │ ├── vcubicbezier.h │ │ ├── vcubicbezier_p.h │ │ ├── vcubicbezierpath.cpp │ │ ├── vcubicbezierpath.h │ │ ├── vcubicbezierpath_p.h │ │ ├── vellipticalarc.cpp │ │ ├── vellipticalarc.h │ │ ├── vellipticalarc_p.h │ │ ├── vgeometry.qbs │ │ ├── vgeometrydef.cpp │ │ ├── vgeometrydef.h │ │ ├── vgobject.cpp │ │ ├── vgobject.h │ │ ├── vgobject_p.h │ │ ├── vlayoutplacelabel.cpp │ │ ├── vlayoutplacelabel.h │ │ ├── vplacelabelitem.cpp │ │ ├── vplacelabelitem.h │ │ ├── vplacelabelitem_p.h │ │ ├── vpointf.cpp │ │ ├── vpointf.h │ │ ├── vpointf_p.h │ │ ├── vspline.cpp │ │ ├── vspline.h │ │ ├── vspline_p.h │ │ ├── vsplinepath.cpp │ │ ├── vsplinepath.h │ │ ├── vsplinepath_p.h │ │ ├── vsplinepoint.cpp │ │ ├── vsplinepoint.h │ │ └── vsplinepoint_p.h │ ├── vhpgl │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── vhpgl.qbs │ │ ├── vhpglengine.cpp │ │ ├── vhpglengine.h │ │ ├── vhpglpaintdevice.cpp │ │ └── vhpglpaintdevice.h │ ├── vlayout │ │ ├── dialogs │ │ │ ├── dialoglayoutscale.cpp │ │ │ ├── dialoglayoutscale.h │ │ │ ├── dialoglayoutscale.ui │ │ │ ├── vabstractlayoutdialog.cpp │ │ │ ├── vabstractlayoutdialog.h │ │ │ ├── watermarkwindow.cpp │ │ │ ├── watermarkwindow.h │ │ │ └── watermarkwindow.ui │ │ ├── share │ │ │ ├── icons.qrc │ │ │ ├── scissors_horizontal.png │ │ │ └── scissors_vertical.png │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── vabstractpiece.cpp │ │ ├── vabstractpiece.h │ │ ├── vabstractpiece_p.h │ │ ├── vbank.cpp │ │ ├── vbank.h │ │ ├── vbestsquare.cpp │ │ ├── vbestsquare.h │ │ ├── vbestsquare_p.h │ │ ├── vboundary.cpp │ │ ├── vboundary.h │ │ ├── vcontour.cpp │ │ ├── vcontour.h │ │ ├── vcontour_p.h │ │ ├── vfoldline.cpp │ │ ├── vfoldline.h │ │ ├── vgraphicsfillitem.cpp │ │ ├── vgraphicsfillitem.h │ │ ├── vlayout.qbs │ │ ├── vlayoutdef.h │ │ ├── vlayoutexporter.cpp │ │ ├── vlayoutexporter.h │ │ ├── vlayoutgenerator.cpp │ │ ├── vlayoutgenerator.h │ │ ├── vlayoutpaper.cpp │ │ ├── vlayoutpaper.h │ │ ├── vlayoutpaper_p.h │ │ ├── vlayoutpiece.cpp │ │ ├── vlayoutpiece.h │ │ ├── vlayoutpiece_p.h │ │ ├── vlayoutpiecepath.cpp │ │ ├── vlayoutpiecepath.h │ │ ├── vlayoutpiecepath_p.h │ │ ├── vlayoutpoint.cpp │ │ ├── vlayoutpoint.h │ │ ├── vposition.cpp │ │ ├── vposition.h │ │ ├── vposter.cpp │ │ ├── vposter.h │ │ ├── vprintlayout.cpp │ │ ├── vprintlayout.h │ │ ├── vrawlayout.cpp │ │ ├── vrawlayout.h │ │ ├── vrawsapoint.cpp │ │ ├── vrawsapoint.h │ │ ├── vsapoint.h │ │ ├── vtextmanager.cpp │ │ └── vtextmanager.h │ ├── vmisc │ │ ├── appimage.cpp │ │ ├── appimage.h │ │ ├── backport │ │ │ ├── qpainterstateguard.cpp │ │ │ └── qpainterstateguard.h │ │ ├── codecs │ │ │ ├── LICENSE.QBIG5CODEC.txt │ │ │ ├── LICENSE.QBKCODEC.txt │ │ │ ├── LICENSE.QEUCJPCODEC.txt │ │ │ ├── LICENSE.QEUCKRCODEC.txt │ │ │ ├── LICENSE.QJISCODEC.txt │ │ │ ├── LICENSE.QSJISCODEC.txt │ │ │ ├── LICENSE.QTSCIICODEC.txt │ │ │ ├── cp949codetbl_p.h │ │ │ ├── qbig5codec.cpp │ │ │ ├── qbig5codec_p.h │ │ │ ├── qcodecmacros_p.h │ │ │ ├── qeucjpcodec.cpp │ │ │ ├── qeucjpcodec_p.h │ │ │ ├── qeuckrcodec.cpp │ │ │ ├── qeuckrcodec_p.h │ │ │ ├── qgb18030codec.cpp │ │ │ ├── qgb18030codec_p.h │ │ │ ├── qiconvcodec.cpp │ │ │ ├── qiconvcodec_p.h │ │ │ ├── qicucodec.cpp │ │ │ ├── qicucodec_p.h │ │ │ ├── qisciicodec.cpp │ │ │ ├── qisciicodec_p.h │ │ │ ├── qjiscodec.cpp │ │ │ ├── qjiscodec_p.h │ │ │ ├── qjpunicode.cpp │ │ │ ├── qjpunicode_p.h │ │ │ ├── qlatincodec.cpp │ │ │ ├── qlatincodec_p.h │ │ │ ├── qsimplecodec.cpp │ │ │ ├── qsimplecodec_p.h │ │ │ ├── qsjiscodec.cpp │ │ │ ├── qsjiscodec_p.h │ │ │ ├── qstringiterator_p.h │ │ │ ├── qtextcodec.cpp │ │ │ ├── qtextcodec.h │ │ │ ├── qtextcodec_p.h │ │ │ ├── qtsciicodec.cpp │ │ │ ├── qtsciicodec_p.h │ │ │ ├── qutfcodec.cpp │ │ │ ├── qutfcodec_p.h │ │ │ ├── qwindowscodec.cpp │ │ │ └── qwindowscodec_p.h │ │ ├── commandoptions.cpp │ │ ├── commandoptions.h │ │ ├── compatibility.h │ │ ├── crashhandler │ │ │ ├── crashhandler.cpp │ │ │ ├── crashhandler.h │ │ │ ├── vcrashpaths.cpp │ │ │ └── vcrashpaths.h │ │ ├── customevents.h │ │ ├── debugbreak.h │ │ ├── def.cpp │ │ ├── def.h │ │ ├── defglobal.h │ │ ├── dialogs │ │ │ ├── dialogaskcollectstatistic.cpp │ │ │ ├── dialogaskcollectstatistic.h │ │ │ ├── dialogaskcollectstatistic.ui │ │ │ ├── dialogcredits.cpp │ │ │ ├── dialogcredits.h │ │ │ ├── dialogcredits.ui │ │ │ ├── dialogexporttocsv.cpp │ │ │ ├── dialogexporttocsv.h │ │ │ ├── dialogexporttocsv.ui │ │ │ ├── dialogselectlanguage.cpp │ │ │ ├── dialogselectlanguage.h │ │ │ ├── dialogselectlanguage.ui │ │ │ ├── dialogselectmeasurementstype.cpp │ │ │ ├── dialogselectmeasurementstype.h │ │ │ ├── dialogselectmeasurementstype.ui │ │ │ ├── vshortcutdialog.cpp │ │ │ ├── vshortcutdialog.h │ │ │ └── vshortcutdialog.ui │ │ ├── exception │ │ │ ├── vexception.cpp │ │ │ └── vexception.h │ │ ├── fpm │ │ │ ├── LICENSE │ │ │ ├── fixed.hpp │ │ │ └── math.hpp │ │ ├── lambdaconstants.h │ │ ├── literals.cpp │ │ ├── literals.h │ │ ├── projectversion.cpp │ │ ├── projectversion.h │ │ ├── qt_dispatch │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── qt_dispatch.h │ │ ├── qxtcsvmodel.cpp │ │ ├── qxtcsvmodel.h │ │ ├── share │ │ │ └── resources │ │ │ │ ├── breezethemes │ │ │ │ ├── breeze.qrc │ │ │ │ ├── dark │ │ │ │ │ ├── branch_closed.svg │ │ │ │ │ ├── branch_closed_hover.svg │ │ │ │ │ ├── branch_end.svg │ │ │ │ │ ├── branch_end_arrow.svg │ │ │ │ │ ├── branch_more.svg │ │ │ │ │ ├── branch_more_arrow.svg │ │ │ │ │ ├── branch_open.svg │ │ │ │ │ ├── branch_open_hover.svg │ │ │ │ │ ├── browser_refresh.svg │ │ │ │ │ ├── browser_refresh_stop.svg │ │ │ │ │ ├── calendar_next.svg │ │ │ │ │ ├── calendar_previous.svg │ │ │ │ │ ├── checkbox_checked.svg │ │ │ │ │ ├── checkbox_checked_disabled.svg │ │ │ │ │ ├── checkbox_indeterminate.svg │ │ │ │ │ ├── checkbox_indeterminate_disabled.svg │ │ │ │ │ ├── checkbox_unchecked.svg │ │ │ │ │ ├── checkbox_unchecked_disabled.svg │ │ │ │ │ ├── clear_text.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── close_hover.svg │ │ │ │ │ ├── close_pressed.svg │ │ │ │ │ ├── computer.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dialog_apply.svg │ │ │ │ │ ├── dialog_cancel.svg │ │ │ │ │ ├── dialog_close.svg │ │ │ │ │ ├── dialog_discard.svg │ │ │ │ │ ├── dialog_help.svg │ │ │ │ │ ├── dialog_ignore.svg │ │ │ │ │ ├── dialog_no.svg │ │ │ │ │ ├── dialog_ok.svg │ │ │ │ │ ├── dialog_open.svg │ │ │ │ │ ├── dialog_reset.svg │ │ │ │ │ ├── dialog_retry.svg │ │ │ │ │ ├── dialog_save.svg │ │ │ │ │ ├── dialog_save_all.svg │ │ │ │ │ ├── dialog_yes_to_all.svg │ │ │ │ │ ├── disc_drive.svg │ │ │ │ │ ├── down_arrow.svg │ │ │ │ │ ├── down_arrow_disabled.svg │ │ │ │ │ ├── down_arrow_hover.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── file_dialog_contents.svg │ │ │ │ │ ├── file_dialog_detailed.svg │ │ │ │ │ ├── file_dialog_end.svg │ │ │ │ │ ├── file_dialog_info.svg │ │ │ │ │ ├── file_dialog_list.svg │ │ │ │ │ ├── file_dialog_start.svg │ │ │ │ │ ├── file_link.svg │ │ │ │ │ ├── floppy_drive.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── folder_link.svg │ │ │ │ │ ├── folder_open.svg │ │ │ │ │ ├── folder_open_link.svg │ │ │ │ │ ├── hard_drive.svg │ │ │ │ │ ├── help.svg │ │ │ │ │ ├── hmovetoolbar.svg │ │ │ │ │ ├── home_directory.svg │ │ │ │ │ ├── horizontal_extension.svg │ │ │ │ │ ├── hseptoolbar.svg │ │ │ │ │ ├── left_arrow.svg │ │ │ │ │ ├── left_arrow_disabled.svg │ │ │ │ │ ├── left_arrow_hover.svg │ │ │ │ │ ├── maximize.svg │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── message_critical.svg │ │ │ │ │ ├── message_information.svg │ │ │ │ │ ├── message_question.svg │ │ │ │ │ ├── message_warning.svg │ │ │ │ │ ├── minimize.svg │ │ │ │ │ ├── network_drive.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── radio_checked.svg │ │ │ │ │ ├── radio_checked_disabled.svg │ │ │ │ │ ├── radio_unchecked.svg │ │ │ │ │ ├── radio_unchecked_disabled.svg │ │ │ │ │ ├── restore.svg │ │ │ │ │ ├── restore_defaults.svg │ │ │ │ │ ├── right_arrow.svg │ │ │ │ │ ├── right_arrow_disabled.svg │ │ │ │ │ ├── right_arrow_hover.svg │ │ │ │ │ ├── seek_backward.svg │ │ │ │ │ ├── seek_forward.svg │ │ │ │ │ ├── shade.svg │ │ │ │ │ ├── sizegrip.svg │ │ │ │ │ ├── skip_backward.svg │ │ │ │ │ ├── skip_forward.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stylesheet.qss │ │ │ │ │ ├── tab_close.svg │ │ │ │ │ ├── transparent.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── undock.svg │ │ │ │ │ ├── undock_hover.svg │ │ │ │ │ ├── undock_hover_pressed.svg │ │ │ │ │ ├── unshade.svg │ │ │ │ │ ├── up_arrow.svg │ │ │ │ │ ├── up_arrow_disabled.svg │ │ │ │ │ ├── up_arrow_hover.svg │ │ │ │ │ ├── vertical_extension.svg │ │ │ │ │ ├── vista_shield.svg │ │ │ │ │ ├── vline.svg │ │ │ │ │ ├── vmovetoolbar.svg │ │ │ │ │ ├── volume.svg │ │ │ │ │ ├── volume_muted.svg │ │ │ │ │ ├── vseptoolbar.svg │ │ │ │ │ └── window_close.svg │ │ │ │ └── light │ │ │ │ │ ├── branch_closed.svg │ │ │ │ │ ├── branch_closed_hover.svg │ │ │ │ │ ├── branch_end.svg │ │ │ │ │ ├── branch_end_arrow.svg │ │ │ │ │ ├── branch_more.svg │ │ │ │ │ ├── branch_more_arrow.svg │ │ │ │ │ ├── branch_open.svg │ │ │ │ │ ├── branch_open_hover.svg │ │ │ │ │ ├── browser_refresh.svg │ │ │ │ │ ├── browser_refresh_stop.svg │ │ │ │ │ ├── calendar_next.svg │ │ │ │ │ ├── calendar_previous.svg │ │ │ │ │ ├── checkbox_checked.svg │ │ │ │ │ ├── checkbox_checked_disabled.svg │ │ │ │ │ ├── checkbox_indeterminate.svg │ │ │ │ │ ├── checkbox_indeterminate_disabled.svg │ │ │ │ │ ├── checkbox_unchecked.svg │ │ │ │ │ ├── checkbox_unchecked_disabled.svg │ │ │ │ │ ├── clear_text.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── close_hover.svg │ │ │ │ │ ├── close_pressed.svg │ │ │ │ │ ├── computer.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dialog_apply.svg │ │ │ │ │ ├── dialog_cancel.svg │ │ │ │ │ ├── dialog_close.svg │ │ │ │ │ ├── dialog_discard.svg │ │ │ │ │ ├── dialog_help.svg │ │ │ │ │ ├── dialog_ignore.svg │ │ │ │ │ ├── dialog_no.svg │ │ │ │ │ ├── dialog_ok.svg │ │ │ │ │ ├── dialog_open.svg │ │ │ │ │ ├── dialog_reset.svg │ │ │ │ │ ├── dialog_retry.svg │ │ │ │ │ ├── dialog_save.svg │ │ │ │ │ ├── dialog_save_all.svg │ │ │ │ │ ├── dialog_yes_to_all.svg │ │ │ │ │ ├── disc_drive.svg │ │ │ │ │ ├── down_arrow.svg │ │ │ │ │ ├── down_arrow_disabled.svg │ │ │ │ │ ├── down_arrow_hover.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── file_dialog_contents.svg │ │ │ │ │ ├── file_dialog_detailed.svg │ │ │ │ │ ├── file_dialog_end.svg │ │ │ │ │ ├── file_dialog_info.svg │ │ │ │ │ ├── file_dialog_list.svg │ │ │ │ │ ├── file_dialog_start.svg │ │ │ │ │ ├── file_link.svg │ │ │ │ │ ├── floppy_drive.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── folder_link.svg │ │ │ │ │ ├── folder_open.svg │ │ │ │ │ ├── folder_open_link.svg │ │ │ │ │ ├── hard_drive.svg │ │ │ │ │ ├── help.svg │ │ │ │ │ ├── hmovetoolbar.svg │ │ │ │ │ ├── home_directory.svg │ │ │ │ │ ├── horizontal_extension.svg │ │ │ │ │ ├── hseptoolbar.svg │ │ │ │ │ ├── left_arrow.svg │ │ │ │ │ ├── left_arrow_disabled.svg │ │ │ │ │ ├── left_arrow_hover.svg │ │ │ │ │ ├── maximize.svg │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── message_critical.svg │ │ │ │ │ ├── message_information.svg │ │ │ │ │ ├── message_question.svg │ │ │ │ │ ├── message_warning.svg │ │ │ │ │ ├── minimize.svg │ │ │ │ │ ├── network_drive.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── radio_checked.svg │ │ │ │ │ ├── radio_checked_disabled.svg │ │ │ │ │ ├── radio_unchecked.svg │ │ │ │ │ ├── radio_unchecked_disabled.svg │ │ │ │ │ ├── restore.svg │ │ │ │ │ ├── restore_defaults.svg │ │ │ │ │ ├── right_arrow.svg │ │ │ │ │ ├── right_arrow_disabled.svg │ │ │ │ │ ├── right_arrow_hover.svg │ │ │ │ │ ├── seek_backward.svg │ │ │ │ │ ├── seek_forward.svg │ │ │ │ │ ├── shade.svg │ │ │ │ │ ├── sizegrip.svg │ │ │ │ │ ├── skip_backward.svg │ │ │ │ │ ├── skip_forward.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stylesheet.qss │ │ │ │ │ ├── tab_close.svg │ │ │ │ │ ├── transparent.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── undock.svg │ │ │ │ │ ├── undock_hover.svg │ │ │ │ │ ├── undock_hover_pressed.svg │ │ │ │ │ ├── unshade.svg │ │ │ │ │ ├── up_arrow.svg │ │ │ │ │ ├── up_arrow_disabled.svg │ │ │ │ │ ├── up_arrow_hover.svg │ │ │ │ │ ├── vertical_extension.svg │ │ │ │ │ ├── vista_shield.svg │ │ │ │ │ ├── vline.svg │ │ │ │ │ ├── vmovetoolbar.svg │ │ │ │ │ ├── volume.svg │ │ │ │ │ ├── volume_muted.svg │ │ │ │ │ ├── vseptoolbar.svg │ │ │ │ │ └── window_close.svg │ │ │ │ ├── cursor.qrc │ │ │ │ ├── cursor │ │ │ │ ├── cursor-arrow-closehand.png │ │ │ │ └── cursor-arrow-openhand.png │ │ │ │ ├── flags.qrc │ │ │ │ ├── flags │ │ │ │ ├── Brazil.png │ │ │ │ ├── China.png │ │ │ │ ├── Colombia.png │ │ │ │ ├── Croatia.png │ │ │ │ ├── CzechRepublic.png │ │ │ │ ├── Dominican-Republic.png │ │ │ │ ├── Finland.png │ │ │ │ ├── France.png │ │ │ │ ├── Germany.png │ │ │ │ ├── Greece.png │ │ │ │ ├── Hungary.png │ │ │ │ ├── Indonesia.png │ │ │ │ ├── Israel.png │ │ │ │ ├── Italy.png │ │ │ │ ├── Japan.png │ │ │ │ ├── Netherlands.png │ │ │ │ ├── Poland.png │ │ │ │ ├── Portugal.png │ │ │ │ ├── Romania.png │ │ │ │ ├── Spain.png │ │ │ │ ├── Ukraine.png │ │ │ │ └── UnitedStates.png │ │ │ │ ├── icon.qrc │ │ │ │ ├── icon │ │ │ │ ├── 16x16 │ │ │ │ │ ├── font_preferences.png │ │ │ │ │ ├── font_preferences@2x.png │ │ │ │ │ ├── landscape.png │ │ │ │ │ ├── measurement.png │ │ │ │ │ ├── mirror.png │ │ │ │ │ ├── operations.png │ │ │ │ │ ├── operations@2x.png │ │ │ │ │ ├── portrait.png │ │ │ │ │ ├── roll.png │ │ │ │ │ ├── roll@2x.png │ │ │ │ │ └── template.png │ │ │ │ ├── 24x24 │ │ │ │ │ ├── close.png │ │ │ │ │ ├── close@2x.png │ │ │ │ │ ├── font_preferences.png │ │ │ │ │ ├── font_preferences@2x.png │ │ │ │ │ ├── putHere.png │ │ │ │ │ ├── right_to_left_arrow.png │ │ │ │ │ ├── star.png │ │ │ │ │ └── star@2x.png │ │ │ │ ├── 32x32 │ │ │ │ │ ├── arrowDown.png │ │ │ │ │ ├── arrowLeft.png │ │ │ │ │ ├── arrowLeftDown.png │ │ │ │ │ ├── arrowLeftUp.png │ │ │ │ │ ├── arrowRight.png │ │ │ │ │ ├── arrowRightDown.png │ │ │ │ │ ├── arrowRightUp.png │ │ │ │ │ ├── arrowUp.png │ │ │ │ │ ├── arrow_cursor.png │ │ │ │ │ ├── arrow_cursor@2x.png │ │ │ │ │ ├── broken_link.png │ │ │ │ │ ├── broken_link@2x.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── button@2x.png │ │ │ │ │ ├── draw.png │ │ │ │ │ ├── export_to_picture_document.png │ │ │ │ │ ├── fold.png │ │ │ │ │ ├── fold@2x.png │ │ │ │ │ ├── font_preferences.png │ │ │ │ │ ├── font_preferences@2x.png │ │ │ │ │ ├── grainline.png │ │ │ │ │ ├── grainline@2x.png │ │ │ │ │ ├── history.png │ │ │ │ │ ├── kontur.png │ │ │ │ │ ├── labels.png │ │ │ │ │ ├── labels@2x.png │ │ │ │ │ ├── layout.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── link@2x.png │ │ │ │ │ ├── new_draw.png │ │ │ │ │ ├── option_draw.png │ │ │ │ │ ├── passmark.png │ │ │ │ │ ├── passmark@2x.png │ │ │ │ │ ├── paths.png │ │ │ │ │ ├── paths@2x.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pins.png │ │ │ │ │ ├── pins@2x.png │ │ │ │ │ ├── putHereLeft.png │ │ │ │ │ ├── syncM.png │ │ │ │ │ └── table.png │ │ │ │ ├── 64x64 │ │ │ │ │ └── icon64x64.png │ │ │ │ ├── config.png │ │ │ │ ├── dark │ │ │ │ │ ├── 16x16 │ │ │ │ │ │ ├── closed_eye.png │ │ │ │ │ │ ├── closed_eye@2x.png │ │ │ │ │ │ ├── fx.png │ │ │ │ │ │ ├── fx@2x.png │ │ │ │ │ │ ├── hold_image.png │ │ │ │ │ │ ├── hold_image@2x.png │ │ │ │ │ │ ├── insert-image.png │ │ │ │ │ │ ├── insert-image@2x.png │ │ │ │ │ │ ├── not_hold_image.png │ │ │ │ │ │ ├── not_hold_image@2x.png │ │ │ │ │ │ ├── open_eye.png │ │ │ │ │ │ ├── open_eye@2x.png │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ ├── remove-image.png │ │ │ │ │ │ ├── remove-image@2x.png │ │ │ │ │ │ ├── viewimage.png │ │ │ │ │ │ └── viewimage@2x.png │ │ │ │ │ ├── 24x24 │ │ │ │ │ │ ├── equal.png │ │ │ │ │ │ ├── equal@2x.png │ │ │ │ │ │ ├── fx.png │ │ │ │ │ │ ├── fx@2x.png │ │ │ │ │ │ ├── go-next-skip.png │ │ │ │ │ │ ├── go-next-skip@2x.png │ │ │ │ │ │ ├── go-next.png │ │ │ │ │ │ ├── go-next@2x.png │ │ │ │ │ │ ├── go-previous-skip.png │ │ │ │ │ │ ├── go-previous-skip@2x.png │ │ │ │ │ │ ├── go-previous.png │ │ │ │ │ │ └── go-previous@2x.png │ │ │ │ │ └── 32x32 │ │ │ │ │ │ ├── clockwise.png │ │ │ │ │ │ ├── clockwise@2x.png │ │ │ │ │ │ ├── double-arrow-horizontal-disabled.png │ │ │ │ │ │ ├── double-arrow-horizontal-disabled@2x.png │ │ │ │ │ │ ├── double-arrow-horizontal-hover.png │ │ │ │ │ │ ├── double-arrow-horizontal-hover@2x.png │ │ │ │ │ │ ├── double-arrow-horizontal.png │ │ │ │ │ │ ├── double-arrow-horizontal@2x.png │ │ │ │ │ │ ├── double-arrow-vertical-disabled.png │ │ │ │ │ │ ├── double-arrow-vertical-disabled@2x.png │ │ │ │ │ │ ├── double-arrow-vertical-hover.png │ │ │ │ │ │ ├── double-arrow-vertical-hover@2x.png │ │ │ │ │ │ ├── double-arrow-vertical.png │ │ │ │ │ │ ├── double-arrow-vertical@2x.png │ │ │ │ │ │ ├── expand1-disabled.png │ │ │ │ │ │ ├── expand1-disabled@2x.png │ │ │ │ │ │ ├── expand1-hover.png │ │ │ │ │ │ ├── expand1-hover@2x.png │ │ │ │ │ │ ├── expand1.png │ │ │ │ │ │ ├── expand1@2x.png │ │ │ │ │ │ ├── expand2-disabled.png │ │ │ │ │ │ ├── expand2-disabled@2x.png │ │ │ │ │ │ ├── expand2-hover.png │ │ │ │ │ │ ├── expand2-hover@2x.png │ │ │ │ │ │ ├── expand2.png │ │ │ │ │ │ ├── expand2@2x.png │ │ │ │ │ │ ├── put_after.png │ │ │ │ │ │ ├── put_after@2x.png │ │ │ │ │ │ ├── rotate-bottom-left-disabled.png │ │ │ │ │ │ ├── rotate-bottom-left-disabled@2x.png │ │ │ │ │ │ ├── rotate-bottom-left-hover.png │ │ │ │ │ │ ├── rotate-bottom-left-hover@2x.png │ │ │ │ │ │ ├── rotate-bottom-left.png │ │ │ │ │ │ ├── rotate-bottom-left@2x.png │ │ │ │ │ │ ├── rotate-bottom-right-disabled.png │ │ │ │ │ │ ├── rotate-bottom-right-disabled@2x.png │ │ │ │ │ │ ├── rotate-bottom-right-hover.png │ │ │ │ │ │ ├── rotate-bottom-right-hover@2x.png │ │ │ │ │ │ ├── rotate-bottom-right.png │ │ │ │ │ │ ├── rotate-bottom-right@2x.png │ │ │ │ │ │ ├── rotate-top-left-disabled.png │ │ │ │ │ │ ├── rotate-top-left-disabled@2x.png │ │ │ │ │ │ ├── rotate-top-left-hover.png │ │ │ │ │ │ ├── rotate-top-left-hover@2x.png │ │ │ │ │ │ ├── rotate-top-left.png │ │ │ │ │ │ ├── rotate-top-left@2x.png │ │ │ │ │ │ ├── rotate-top-right-disabled.png │ │ │ │ │ │ ├── rotate-top-right-disabled@2x.png │ │ │ │ │ │ ├── rotate-top-right-hover.png │ │ │ │ │ │ ├── rotate-top-right-hover@2x.png │ │ │ │ │ │ ├── rotate-top-right.png │ │ │ │ │ │ └── rotate-top-right@2x.png │ │ │ │ ├── individual_measurements.png │ │ │ │ ├── layout.png │ │ │ │ ├── light │ │ │ │ │ ├── 16x16 │ │ │ │ │ │ ├── closed_eye.png │ │ │ │ │ │ ├── closed_eye@2x.png │ │ │ │ │ │ ├── fx.png │ │ │ │ │ │ ├── fx@2x.png │ │ │ │ │ │ ├── hold_image.png │ │ │ │ │ │ ├── hold_image@2x.png │ │ │ │ │ │ ├── insert-image.png │ │ │ │ │ │ ├── insert-image@2x.png │ │ │ │ │ │ ├── not_hold_image.png │ │ │ │ │ │ ├── not_hold_image@2x.png │ │ │ │ │ │ ├── open_eye.png │ │ │ │ │ │ ├── open_eye@2x.png │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ ├── remove-image.png │ │ │ │ │ │ ├── remove-image@2x.png │ │ │ │ │ │ ├── viewimage.png │ │ │ │ │ │ └── viewimage@2x.png │ │ │ │ │ ├── 24x24 │ │ │ │ │ │ ├── equal.png │ │ │ │ │ │ ├── equal@2x.png │ │ │ │ │ │ ├── fx.png │ │ │ │ │ │ ├── fx@2x.png │ │ │ │ │ │ ├── go-next-skip.png │ │ │ │ │ │ ├── go-next-skip@2x.png │ │ │ │ │ │ ├── go-next.png │ │ │ │ │ │ ├── go-next@2x.png │ │ │ │ │ │ ├── go-previous-skip.png │ │ │ │ │ │ ├── go-previous-skip@2x.png │ │ │ │ │ │ ├── go-previous.png │ │ │ │ │ │ └── go-previous@2x.png │ │ │ │ │ └── 32x32 │ │ │ │ │ │ ├── clockwise.png │ │ │ │ │ │ ├── clockwise@2x.png │ │ │ │ │ │ ├── double-arrow-horizontal-disabled.png │ │ │ │ │ │ ├── double-arrow-horizontal-disabled@2x.png │ │ │ │ │ │ ├── double-arrow-horizontal-hover.png │ │ │ │ │ │ ├── double-arrow-horizontal-hover@2x.png │ │ │ │ │ │ ├── double-arrow-horizontal.png │ │ │ │ │ │ ├── double-arrow-horizontal@2x.png │ │ │ │ │ │ ├── double-arrow-vertical-disabled.png │ │ │ │ │ │ ├── double-arrow-vertical-disabled@2x.png │ │ │ │ │ │ ├── double-arrow-vertical-hover.png │ │ │ │ │ │ ├── double-arrow-vertical-hover@2x.png │ │ │ │ │ │ ├── double-arrow-vertical.png │ │ │ │ │ │ ├── double-arrow-vertical@2x.png │ │ │ │ │ │ ├── expand1-disabled.png │ │ │ │ │ │ ├── expand1-disabled@2x.png │ │ │ │ │ │ ├── expand1-hover.png │ │ │ │ │ │ ├── expand1-hover@2x.png │ │ │ │ │ │ ├── expand1.png │ │ │ │ │ │ ├── expand1@2x.png │ │ │ │ │ │ ├── expand2-disabled.png │ │ │ │ │ │ ├── expand2-disabled@2x.png │ │ │ │ │ │ ├── expand2-hover.png │ │ │ │ │ │ ├── expand2-hover@2x.png │ │ │ │ │ │ ├── expand2.png │ │ │ │ │ │ ├── expand2@2x.png │ │ │ │ │ │ ├── put_after.png │ │ │ │ │ │ ├── put_after@2x.png │ │ │ │ │ │ ├── rotate-bottom-left-disabled.png │ │ │ │ │ │ ├── rotate-bottom-left-disabled@2x.png │ │ │ │ │ │ ├── rotate-bottom-left-hover.png │ │ │ │ │ │ ├── rotate-bottom-left-hover@2x.png │ │ │ │ │ │ ├── rotate-bottom-left.png │ │ │ │ │ │ ├── rotate-bottom-left@2x.png │ │ │ │ │ │ ├── rotate-bottom-right-disabled.png │ │ │ │ │ │ ├── rotate-bottom-right-disabled@2x.png │ │ │ │ │ │ ├── rotate-bottom-right-hover.png │ │ │ │ │ │ ├── rotate-bottom-right-hover@2x.png │ │ │ │ │ │ ├── rotate-bottom-right.png │ │ │ │ │ │ ├── rotate-bottom-right@2x.png │ │ │ │ │ │ ├── rotate-top-left-disabled.png │ │ │ │ │ │ ├── rotate-top-left-disabled@2x.png │ │ │ │ │ │ ├── rotate-top-left-hover.png │ │ │ │ │ │ ├── rotate-top-left-hover@2x.png │ │ │ │ │ │ ├── rotate-top-left.png │ │ │ │ │ │ ├── rotate-top-left@2x.png │ │ │ │ │ │ ├── rotate-top-right-disabled.png │ │ │ │ │ │ ├── rotate-top-right-disabled@2x.png │ │ │ │ │ │ ├── rotate-top-right-hover.png │ │ │ │ │ │ ├── rotate-top-right-hover@2x.png │ │ │ │ │ │ ├── rotate-top-right.png │ │ │ │ │ │ └── rotate-top-right@2x.png │ │ │ │ ├── multisize_measurements.png │ │ │ │ ├── path_config.png │ │ │ │ ├── pattern_config.png │ │ │ │ └── svg │ │ │ │ │ ├── arrow_cursor.svg │ │ │ │ │ ├── broken_path.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── closed_eye.svg │ │ │ │ │ ├── dark │ │ │ │ │ ├── clockwise.svg │ │ │ │ │ ├── closed_eye.svg │ │ │ │ │ ├── double-arrow-horizontal-disabled.svg │ │ │ │ │ ├── double-arrow-horizontal-hover.svg │ │ │ │ │ ├── double-arrow-horizontal.svg │ │ │ │ │ ├── double-arrow-vertical-disabled.svg │ │ │ │ │ ├── double-arrow-vertical-hover.svg │ │ │ │ │ ├── double-arrow-vertical.svg │ │ │ │ │ ├── equal.svg │ │ │ │ │ ├── expand1-disabled.svg │ │ │ │ │ ├── expand1-hover.svg │ │ │ │ │ ├── expand1.svg │ │ │ │ │ ├── expand2-disabled.svg │ │ │ │ │ ├── expand2-hover.svg │ │ │ │ │ ├── expand2.svg │ │ │ │ │ ├── fx.svg │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ ├── go-next.svg │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ ├── hold_image.svg │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ ├── not_hold_image.svg │ │ │ │ │ ├── open_eye.svg │ │ │ │ │ ├── put_after.svg │ │ │ │ │ ├── remove-image.svg │ │ │ │ │ ├── rotate-bottom-left-disabled.svg │ │ │ │ │ ├── rotate-bottom-left-hover.svg │ │ │ │ │ ├── rotate-bottom-left.svg │ │ │ │ │ ├── rotate-bottom-right-disabled.svg │ │ │ │ │ ├── rotate-bottom-right-hover.svg │ │ │ │ │ ├── rotate-bottom-right.svg │ │ │ │ │ ├── rotate-top-left-disabled.svg │ │ │ │ │ ├── rotate-top-left-hover.svg │ │ │ │ │ ├── rotate-top-left.svg │ │ │ │ │ ├── rotate-top-right-disabled.svg │ │ │ │ │ ├── rotate-top-right-hover.svg │ │ │ │ │ ├── rotate-top-right.svg │ │ │ │ │ └── viewimage.svg │ │ │ │ │ ├── font_preferences.svg │ │ │ │ │ ├── labels.svg │ │ │ │ │ ├── light │ │ │ │ │ ├── clockwise.svg │ │ │ │ │ ├── closed_eye.svg │ │ │ │ │ ├── double-arrow-horizontal-disabled.svg │ │ │ │ │ ├── double-arrow-horizontal-hover.svg │ │ │ │ │ ├── double-arrow-horizontal.svg │ │ │ │ │ ├── double-arrow-vertical-disabled.svg │ │ │ │ │ ├── double-arrow-vertical-hover.svg │ │ │ │ │ ├── double-arrow-vertical.svg │ │ │ │ │ ├── equal.svg │ │ │ │ │ ├── expand1-disabled.svg │ │ │ │ │ ├── expand1-hover.svg │ │ │ │ │ ├── expand1.svg │ │ │ │ │ ├── expand2-disabled.svg │ │ │ │ │ ├── expand2-hover.svg │ │ │ │ │ ├── expand2.svg │ │ │ │ │ ├── fx.svg │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ ├── go-next.svg │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ ├── hold_image.svg │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ ├── not_hold_image.svg │ │ │ │ │ ├── open_eye.svg │ │ │ │ │ ├── put_after.svg │ │ │ │ │ ├── remove-image.svg │ │ │ │ │ ├── rotate-bottom-left-disabled.svg │ │ │ │ │ ├── rotate-bottom-left-hover.svg │ │ │ │ │ ├── rotate-bottom-left.svg │ │ │ │ │ ├── rotate-bottom-right-disabled.svg │ │ │ │ │ ├── rotate-bottom-right-hover.svg │ │ │ │ │ ├── rotate-bottom-right.svg │ │ │ │ │ ├── rotate-top-left-disabled.svg │ │ │ │ │ ├── rotate-top-left-hover.svg │ │ │ │ │ ├── rotate-top-left.svg │ │ │ │ │ ├── rotate-top-right-disabled.svg │ │ │ │ │ ├── rotate-top-right-hover.svg │ │ │ │ │ ├── rotate-top-right.svg │ │ │ │ │ └── viewimage.svg │ │ │ │ │ ├── open_eye.svg │ │ │ │ │ ├── passmark.svg │ │ │ │ │ ├── paths.svg │ │ │ │ │ ├── puzzle.svg │ │ │ │ │ ├── roll.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ └── valentina.svg │ │ │ │ ├── icons │ │ │ │ ├── Eleven-Dark │ │ │ │ │ ├── 8 │ │ │ │ │ │ └── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ └── vcs-added.svg │ │ │ │ │ ├── 16 │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── action-unavailable.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add-subtitle.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcol.svg │ │ │ │ │ │ │ ├── adjustrow.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-on-canvas.svg │ │ │ │ │ │ │ ├── align-sel-as-group.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── attach-path.svg │ │ │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── automated-tasks.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backup.svg │ │ │ │ │ │ │ ├── bad-marker.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bend-path.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── bool-op.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── bounding-box.svg │ │ │ │ │ │ │ ├── boundingbox_bottom.svg │ │ │ │ │ │ │ ├── boundingbox_bottom_left.svg │ │ │ │ │ │ │ ├── boundingbox_bottom_right.svg │ │ │ │ │ │ │ ├── boundingbox_center.svg │ │ │ │ │ │ │ ├── boundingbox_left.svg │ │ │ │ │ │ │ ├── boundingbox_right.svg │ │ │ │ │ │ │ ├── boundingbox_top.svg │ │ │ │ │ │ │ ├── boundingbox_top_left.svg │ │ │ │ │ │ │ ├── boundingbox_top_right.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── bspline.svg │ │ │ │ │ │ │ ├── bug.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── cab_view.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── clone-original.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_copyfullnamestoclip.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_packfiles.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-mode-black-white.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-negative.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-positive.svg │ │ │ │ │ │ │ ├── color-mode-invert-image.svg │ │ │ │ │ │ │ ├── color-mode-invert-text.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── connector-avoid.svg │ │ │ │ │ │ │ ├── connector-ignore.svg │ │ │ │ │ │ │ ├── connector-orthogonal.svg │ │ │ │ │ │ │ ├── construct-grid.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── copy-rotate.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── curvestitching.svg │ │ │ │ │ │ │ ├── cvc-configure.svg │ │ │ │ │ │ │ ├── cvc-connect.svg │ │ │ │ │ │ │ ├── cvc-disconnect.svg │ │ │ │ │ │ │ ├── cvc-info.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── dashed-stroke.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── delete_table.svg │ │ │ │ │ │ │ ├── deletecell.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-fill-and-stroke.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-geometry.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-layers.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-objects.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-path-effects.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-rows-and-columns.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-templates.svg │ │ │ │ │ │ │ ├── dialog-text-and-font.svg │ │ │ │ │ │ │ ├── dialog-tile-clones.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── dissociatecell.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-compareleft.svg │ │ │ │ │ │ │ ├── document-compareright.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-duplicate.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-equal.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-metadata.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-scan.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-single.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── document-unequal.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse-arc.svg │ │ │ │ │ │ │ ├── draw-ellipse-chord.svg │ │ │ │ │ │ │ ├── draw-ellipse-segment.svg │ │ │ │ │ │ │ ├── draw-ellipse-whole.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser-delete-objects.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-geometry-angle-bisector.svg │ │ │ │ │ │ │ ├── draw-geometry-circle-from-radius.svg │ │ │ │ │ │ │ ├── draw-geometry-circle-from-three-points.svg │ │ │ │ │ │ │ ├── draw-geometry-inactive.svg │ │ │ │ │ │ │ ├── draw-geometry-line-parallel.svg │ │ │ │ │ │ │ ├── draw-geometry-line-perpendicular.svg │ │ │ │ │ │ │ ├── draw-geometry-line-segment.svg │ │ │ │ │ │ │ ├── draw-geometry-mirror.svg │ │ │ │ │ │ │ ├── draw-geometry-set-bounding-box.svg │ │ │ │ │ │ │ ├── draw-geometry-show-measuring-info.svg │ │ │ │ │ │ │ ├── draw-geometry.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star-outline.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-trace-background.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-use-pressure.svg │ │ │ │ │ │ │ ├── draw-use-tilt.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-link-lpe.svg │ │ │ │ │ │ │ ├── edit-clone-link.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-duplicate.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-move.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-height-separately.svg │ │ │ │ │ │ │ ├── edit-paste-height.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste-size-separately.svg │ │ │ │ │ │ │ ├── edit-paste-size.svg │ │ │ │ │ │ │ ├── edit-paste-style.svg │ │ │ │ │ │ │ ├── edit-paste-width-separately.svg │ │ │ │ │ │ │ ├── edit-paste-width.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all-layers.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ │ ├── edit-select-same-fill-and-stroke.svg │ │ │ │ │ │ │ ├── edit-select-same-fill.svg │ │ │ │ │ │ │ ├── edit-select-same-object-type.svg │ │ │ │ │ │ │ ├── edit-select-same-stroke-color.svg │ │ │ │ │ │ │ ├── edit-select-same-stroke-style.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-5pts.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embrodery-stitch.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── empty-icon.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── envelope.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── fcitx-anthy.svg │ │ │ │ │ │ │ ├── fcitx-hangul.svg │ │ │ │ │ │ │ ├── fcitx-kbd.svg │ │ │ │ │ │ │ ├── fcitx-vk-active.svg │ │ │ │ │ │ │ ├── fcitx-vk-inactive.svg │ │ │ │ │ │ │ ├── feTile-icon.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-between-many.svg │ │ │ │ │ │ │ ├── fill-between-strokes.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── fill-rule-even-odd.svg │ │ │ │ │ │ │ ├── fill-rule-nonzero.svg │ │ │ │ │ │ │ ├── fillet-chamfer.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── fitmanual.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flatten.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font-face.svg │ │ │ │ │ │ │ ├── font-size-down.svg │ │ │ │ │ │ │ ├── font-size-up.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── foreign_green.svg │ │ │ │ │ │ │ ├── foreign_red.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── gears.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-remote.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pivottable.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-axonometric.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag-new.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-dismiss.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hamburger-menu.svg │ │ │ │ │ │ │ ├── hatches.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate-ars.svg │ │ │ │ │ │ │ ├── help-donate-aud.svg │ │ │ │ │ │ │ ├── help-donate-brl.svg │ │ │ │ │ │ │ ├── help-donate-cad.svg │ │ │ │ │ │ │ ├── help-donate-chf.svg │ │ │ │ │ │ │ ├── help-donate-cny.svg │ │ │ │ │ │ │ ├── help-donate-eur.svg │ │ │ │ │ │ │ ├── help-donate-gbp.svg │ │ │ │ │ │ │ ├── help-donate-inr.svg │ │ │ │ │ │ │ ├── help-donate-jpy.svg │ │ │ │ │ │ │ ├── help-donate-mxn.svg │ │ │ │ │ │ │ ├── help-donate-pln.svg │ │ │ │ │ │ │ ├── help-donate-rub.svg │ │ │ │ │ │ │ ├── help-donate-sek.svg │ │ │ │ │ │ │ ├── help-donate-try.svg │ │ │ │ │ │ │ ├── help-donate-uah.svg │ │ │ │ │ │ │ ├── help-donate-usd.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keyboard-shortcuts.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── highlight-pointer-spot.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── horizontal.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── insertcellcopy.svg │ │ │ │ │ │ │ ├── interactive_simplify.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── interpolate-points.svg │ │ │ │ │ │ │ ├── interpolate.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join-type.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── keyframe-add.svg │ │ │ │ │ │ │ ├── keyframe-disable.svg │ │ │ │ │ │ │ ├── keyframe-duplicate.svg │ │ │ │ │ │ │ ├── keyframe-next.svg │ │ │ │ │ │ │ ├── keyframe-previous.svg │ │ │ │ │ │ │ ├── keyframe-record.svg │ │ │ │ │ │ │ ├── keyframe-remove.svg │ │ │ │ │ │ │ ├── keyframe.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── knot.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kruler-east.svg │ │ │ │ │ │ │ ├── kruler-north.svg │ │ │ │ │ │ │ ├── kruler-south.svg │ │ │ │ │ │ │ ├── kruler-west.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── lastfm-neighbour.svg │ │ │ │ │ │ │ ├── lastfm-personal.svg │ │ │ │ │ │ │ ├── lastfm-recommended.svg │ │ │ │ │ │ │ ├── lastfm-tag.svg │ │ │ │ │ │ │ ├── lattice2.svg │ │ │ │ │ │ │ ├── layer-bottom.svg │ │ │ │ │ │ │ ├── layer-delete.svg │ │ │ │ │ │ │ ├── layer-duplicate.svg │ │ │ │ │ │ │ ├── layer-lower.svg │ │ │ │ │ │ │ ├── layer-new.svg │ │ │ │ │ │ │ ├── layer-next.svg │ │ │ │ │ │ │ ├── layer-previous.svg │ │ │ │ │ │ │ ├── layer-raise.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-top.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── loved_radio.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-archive.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward-attachment.svg │ │ │ │ │ │ │ ├── mail-forward-custom.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-author.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── math1.svg │ │ │ │ │ │ │ ├── math2.svg │ │ │ │ │ │ │ ├── math3.svg │ │ │ │ │ │ │ ├── math7.svg │ │ │ │ │ │ │ ├── math9.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure-segments.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── media-write-cd.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── mergecell-horizontal.svg │ │ │ │ │ │ │ ├── mergecell-vertical.svg │ │ │ │ │ │ │ ├── mergecell.svg │ │ │ │ │ │ │ ├── mesh-gradient-fit.svg │ │ │ │ │ │ │ ├── mesh-gradient.svg │ │ │ │ │ │ │ ├── message-new.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mirror-symmetry.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── no-marker.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── node_insert_max_x.svg │ │ │ │ │ │ │ ├── node_insert_max_y.svg │ │ │ │ │ │ │ ├── node_insert_min_x.svg │ │ │ │ │ │ │ ├── node_insert_min_y.svg │ │ │ │ │ │ │ ├── none.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-fill.svg │ │ │ │ │ │ │ ├── object-flip-hor.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-ver.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-stroke-style.svg │ │ │ │ │ │ │ ├── object-stroke.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-forecast.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── office-report.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── pack-less.svg │ │ │ │ │ │ │ ├── pack-more.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-gradient-conical.svg │ │ │ │ │ │ │ ├── paint-gradient-linear.svg │ │ │ │ │ │ │ ├── paint-gradient-mesh.svg │ │ │ │ │ │ │ ├── paint-gradient-radial.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paint-pattern.svg │ │ │ │ │ │ │ ├── paint-solid.svg │ │ │ │ │ │ │ ├── paint-swatch.svg │ │ │ │ │ │ │ ├── paint-unknown.svg │ │ │ │ │ │ │ ├── paper-color.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-break-apart.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-combine.svg │ │ │ │ │ │ │ ├── path-cut.svg │ │ │ │ │ │ │ ├── path-difference.svg │ │ │ │ │ │ │ ├── path-division.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-exclusion.svg │ │ │ │ │ │ │ ├── path-inset.svg │ │ │ │ │ │ │ ├── path-intersection.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-bspline.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-offset-dynamic.svg │ │ │ │ │ │ │ ├── path-offset-linked.svg │ │ │ │ │ │ │ ├── path-outset.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── path-tweak-attract.svg │ │ │ │ │ │ │ ├── path-tweak-push.svg │ │ │ │ │ │ │ ├── path-tweak-roughen.svg │ │ │ │ │ │ │ ├── path-tweak-shrink.svg │ │ │ │ │ │ │ ├── path-union.svg │ │ │ │ │ │ │ ├── pattern.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective-envelope.svg │ │ │ │ │ │ │ ├── perspective-parallel.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── pixelart-trace.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── powerclip.svg │ │ │ │ │ │ │ ├── powermask.svg │ │ │ │ │ │ │ ├── powerstroke.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preferences-system.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── pts2ellipse.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-asynchronous.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-cleanup.svg │ │ │ │ │ │ │ ├── rabbitvcs-clear.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-compare.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-merge.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-resolve.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── rectangle-make-corners-sharp.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-color.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resizecol.svg │ │ │ │ │ │ │ ├── resizerow.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── retweet.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── rough-hatches.svg │ │ │ │ │ │ │ ├── roughen.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── ruler.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-off.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-on.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── searching.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-above.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-below.svg │ │ │ │ │ │ │ ├── selection-move-to-layer.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection-touch.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-bounding-box.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-guides.svg │ │ │ │ │ │ │ ├── show-handles.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── simplify.svg │ │ │ │ │ │ │ ├── skeletal.svg │ │ │ │ │ │ │ ├── sketch.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slice.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-nodes.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-others.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── source-playlist.svg │ │ │ │ │ │ │ ├── source-smart-playlist.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── spiro.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spray-mode-clone.svg │ │ │ │ │ │ │ ├── spray-mode-copy.svg │ │ │ │ │ │ │ ├── spray-mode-union.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_calc-cancel.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_text-monospaced.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_volume.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── swatches.svg │ │ │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ │ │ ├── switch-on.svg │ │ │ │ │ │ │ ├── symbol-add.svg │ │ │ │ │ │ │ ├── symbol-bigger.svg │ │ │ │ │ │ │ ├── symbol-fit.svg │ │ │ │ │ │ │ ├── symbol-remove.svg │ │ │ │ │ │ │ ├── symbol-smaller.svg │ │ │ │ │ │ │ ├── symbols.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-edit.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-create.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── taper-stroke.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── text-convert-to-regular.svg │ │ │ │ │ │ │ ├── text-field-framed.svg │ │ │ │ │ │ │ ├── text-field-frameless.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-put-on-path.svg │ │ │ │ │ │ │ ├── text-remove-from-path.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-unkern.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_outer_style.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── too-much-ink-icon.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── transform-2pts.svg │ │ │ │ │ │ │ ├── transform-affect-gradient.svg │ │ │ │ │ │ │ ├── transform-affect-pattern.svg │ │ │ │ │ │ │ ├── transform-affect-rounded-corners.svg │ │ │ │ │ │ │ ├── transform-affect-stroke.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── usermenu-delete.svg │ │ │ │ │ │ │ ├── usermenu-down.svg │ │ │ │ │ │ │ ├── usermenu-up.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── vertical.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-add.svg │ │ │ │ │ │ │ ├── view-bank-delete.svg │ │ │ │ │ │ │ ├── view-bank-edit.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-currency-list.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-financial-account-add.svg │ │ │ │ │ │ │ ├── view-financial-account-asset-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-asset.svg │ │ │ │ │ │ │ ├── view-financial-account-cash-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-cash.svg │ │ │ │ │ │ │ ├── view-financial-account-checking-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-checking.svg │ │ │ │ │ │ │ ├── view-financial-account-close.svg │ │ │ │ │ │ │ ├── view-financial-account-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-delete.svg │ │ │ │ │ │ │ ├── view-financial-account-edit.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security.svg │ │ │ │ │ │ │ ├── view-financial-account-investment.svg │ │ │ │ │ │ │ ├── view-financial-account-liability-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-liability.svg │ │ │ │ │ │ │ ├── view-financial-account-loan-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-loan.svg │ │ │ │ │ │ │ ├── view-financial-account-reopen.svg │ │ │ │ │ │ │ ├── view-financial-account-savings-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-savings.svg │ │ │ │ │ │ │ ├── view-financial-account.svg │ │ │ │ │ │ │ ├── view-financial-budget.svg │ │ │ │ │ │ │ ├── view-financial-category-add.svg │ │ │ │ │ │ │ ├── view-financial-category-delete.svg │ │ │ │ │ │ │ ├── view-financial-category-edit.svg │ │ │ │ │ │ │ ├── view-financial-category-expense.svg │ │ │ │ │ │ │ ├── view-financial-category-income.svg │ │ │ │ │ │ │ ├── view-financial-category.svg │ │ │ │ │ │ │ ├── view-financial-list.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconcile.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconciled.svg │ │ │ │ │ │ │ ├── view-financial-transfer-unreconciled.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-institution-add.svg │ │ │ │ │ │ │ ├── view-institution-delete.svg │ │ │ │ │ │ │ ├── view-institution-edit.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-private.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-readermode-active.svg │ │ │ │ │ │ │ ├── view-readermode.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── vonkoch.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ │ ├── xfce-wm-close.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-center-page.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-drawing.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ └── system-lock-screen.svg │ │ │ │ │ ├── 22 │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-node.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-node.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animal.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── auto-transition.svg │ │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backgroundtool.svg │ │ │ │ │ │ │ ├── backup.svg │ │ │ │ │ │ │ ├── bboxnext.svg │ │ │ │ │ │ │ ├── bboxprev.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── cab_view.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── calligraphy.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-mode-black-white.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-negative.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-positive.svg │ │ │ │ │ │ │ ├── color-mode-invert-image.svg │ │ │ │ │ │ │ ├── color-mode-invert-text.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composite-track-off.svg │ │ │ │ │ │ │ ├── composite-track-on.svg │ │ │ │ │ │ │ ├── composite-track-preview.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── cookies.svg │ │ │ │ │ │ │ ├── coordinate.svg │ │ │ │ │ │ │ ├── copy-coordinates.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ │ ├── description.svg │ │ │ │ │ │ │ ├── dfrac.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── discrete.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-node.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-node.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as-template.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── dontknow.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── drag-surface.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dvisearch.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── earthquake.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-group.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit_animation.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entrance_animations.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── errornext.svg │ │ │ │ │ │ │ ├── errorprev.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── exit_animations.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── favorite.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ │ │ ├── fitmanual.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flower-shape.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── food.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-convert-to-path.svg │ │ │ │ │ │ │ ├── format-currency.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-insert-node.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-node-corner.svg │ │ │ │ │ │ │ ├── format-node-curve.svg │ │ │ │ │ │ │ ├── format-node-line.svg │ │ │ │ │ │ │ ├── format-node-smooth.svg │ │ │ │ │ │ │ ├── format-node-symmetric.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-segment-curve.svg │ │ │ │ │ │ │ ├── format-segment-line.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-remote.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-autosum.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-bucket.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-accounting.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-all.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-none.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-format-percentage.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-decrease.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-increase.svg │ │ │ │ │ │ │ ├── gnumeric-format-thousand-separator.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-object-arrow.svg │ │ │ │ │ │ │ ├── gnumeric-object-button.svg │ │ │ │ │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ │ │ │ │ ├── gnumeric-object-combo.svg │ │ │ │ │ │ │ ├── gnumeric-object-ellipse.svg │ │ │ │ │ │ │ ├── gnumeric-object-label.svg │ │ │ │ │ │ │ ├── gnumeric-object-line.svg │ │ │ │ │ │ │ ├── gnumeric-object-list.svg │ │ │ │ │ │ │ ├── gnumeric-object-rectangle.svg │ │ │ │ │ │ │ ├── gnumeric-object-scrollbar.svg │ │ │ │ │ │ │ ├── gnumeric-object-spinbutton.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ │ │ │ │ ├── gnumeric-protection-no.svg │ │ │ │ │ │ │ ├── gnumeric-protection-yes.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag-new.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hand.svg │ │ │ │ │ │ │ ├── handle-left.svg │ │ │ │ │ │ │ ├── handle-move.svg │ │ │ │ │ │ │ ├── handle-right.svg │ │ │ │ │ │ │ ├── handle-sort.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hexagon-shape.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-adjust.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── item.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-composite.svg │ │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-no-composite.svg │ │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── know.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_cbound.svg │ │ │ │ │ │ │ ├── kstars_clines.svg │ │ │ │ │ │ │ ├── kstars_cnames.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_constellationart.svg │ │ │ │ │ │ │ ├── kstars_deepsky.svg │ │ │ │ │ │ │ ├── kstars_ekos.svg │ │ │ │ │ │ │ ├── kstars_fitsviewer.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_grid.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kstars_hgrid.svg │ │ │ │ │ │ │ ├── kstars_horizon.svg │ │ │ │ │ │ │ ├── kstars_indi.svg │ │ │ │ │ │ │ ├── kstars_mw.svg │ │ │ │ │ │ │ ├── kstars_planets.svg │ │ │ │ │ │ │ ├── kstars_satellites.svg │ │ │ │ │ │ │ ├── kstars_solarsystem.svg │ │ │ │ │ │ │ ├── kstars_stars.svg │ │ │ │ │ │ │ ├── kstars_supernovae.svg │ │ │ │ │ │ │ ├── kstars_xplanet.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-1x-zoom.svg │ │ │ │ │ │ │ ├── labplot-2x-zoom.svg │ │ │ │ │ │ │ ├── labplot-3x-zoom.svg │ │ │ │ │ │ │ ├── labplot-4x-zoom.svg │ │ │ │ │ │ │ ├── labplot-5x-zoom.svg │ │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-matrix-new.svg │ │ │ │ │ │ │ ├── labplot-matrix.svg │ │ │ │ │ │ │ ├── labplot-plot-axis-points.svg │ │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-workbook-new.svg │ │ │ │ │ │ │ ├── labplot-workbook.svg │ │ │ │ │ │ │ ├── labplot-worksheet-new.svg │ │ │ │ │ │ │ ├── labplot-worksheet.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-segments.svg │ │ │ │ │ │ │ ├── labplot-xy-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-interpolation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-four-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-smoothing-curve.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── latex-config.svg │ │ │ │ │ │ │ ├── latex.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lilypond.svg │ │ │ │ │ │ │ ├── linear.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── map-flat.svg │ │ │ │ │ │ │ ├── map-globe.svg │ │ │ │ │ │ │ ├── map-gnomonic.svg │ │ │ │ │ │ │ ├── map-mercator.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-mout.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── motion_path_animations.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── music-note-16th.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── newline.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── nextfuzzy.svg │ │ │ │ │ │ │ ├── nextfuzzyuntrans.svg │ │ │ │ │ │ │ ├── nextuntranslated.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── nroot.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-forecast.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── office-report.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-magnet.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ │ ├── overflow-menu-left.svg │ │ │ │ │ │ │ ├── overflow-menu-right.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paper-color.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── pathshape.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-sync.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── prevfuzzy.svg │ │ │ │ │ │ │ ├── prevfuzzyuntrans.svg │ │ │ │ │ │ │ ├── preview-add-zone.svg │ │ │ │ │ │ │ ├── preview-remove-all.svg │ │ │ │ │ │ │ ├── preview-remove-zone.svg │ │ │ │ │ │ │ ├── preview-render-off.svg │ │ │ │ │ │ │ ├── preview-render-on.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── prevuntranslated.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-defaults.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-asynchronous.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-compare.svg │ │ │ │ │ │ │ ├── rabbitvcs-createpatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-merge.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── record.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── rime-im.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-all-effects.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-gpu-effects.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── skg-chart-bubble.svg │ │ │ │ │ │ │ ├── skrooge_credit_card.svg │ │ │ │ │ │ │ ├── skrooge_less.svg │ │ │ │ │ │ │ ├── skrooge_more.svg │ │ │ │ │ │ │ ├── skrooge_much_less.svg │ │ │ │ │ │ │ ├── skrooge_much_more.svg │ │ │ │ │ │ │ ├── skrooge_type.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallfrac.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smartnewline.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── smiley-shape.svg │ │ │ │ │ │ │ ├── smiley.svg │ │ │ │ │ │ │ ├── smooth.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_ChargedParticle.svg │ │ │ │ │ │ │ ├── step_object_CircularMotor.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_CoulombForce.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Gas.svg │ │ │ │ │ │ │ ├── step_object_GasParticle.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_GravitationForce.svg │ │ │ │ │ │ │ ├── step_object_LinearMotor.svg │ │ │ │ │ │ │ ├── step_object_Meter.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_SoftBody.svg │ │ │ │ │ │ │ ├── step_object_Spring.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── step_object_Tracer.svg │ │ │ │ │ │ │ ├── step_object_WeightForce.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-filters-apply.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-edit.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── texcompiler.svg │ │ │ │ │ │ │ ├── texlion.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_remove_kerns.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ │ ├── timeline-extract.svg │ │ │ │ │ │ │ ├── timeline-insert.svg │ │ │ │ │ │ │ ├── timeline-lift.svg │ │ │ │ │ │ │ ├── timeline-overwrite.svg │ │ │ │ │ │ │ ├── timeline-use-zone-off.svg │ │ │ │ │ │ │ ├── timeline-use-zone-on.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_eraser.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_curve.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_free_form_selection.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_spraycan.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── torrents.svg │ │ │ │ │ │ │ ├── transform-browse.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-horizontal.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale-vertical.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── typewriter.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── username-copy.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ │ ├── view-bank-add.svg │ │ │ │ │ │ │ ├── view-bank-delete.svg │ │ │ │ │ │ │ ├── view-bank-edit.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-currency-list.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-financial-account-add.svg │ │ │ │ │ │ │ ├── view-financial-account-asset-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-asset.svg │ │ │ │ │ │ │ ├── view-financial-account-cash-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-cash.svg │ │ │ │ │ │ │ ├── view-financial-account-checking-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-checking.svg │ │ │ │ │ │ │ ├── view-financial-account-close.svg │ │ │ │ │ │ │ ├── view-financial-account-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-credit-card-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-credit-card.svg │ │ │ │ │ │ │ ├── view-financial-account-delete.svg │ │ │ │ │ │ │ ├── view-financial-account-edit.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security.svg │ │ │ │ │ │ │ ├── view-financial-account-investment.svg │ │ │ │ │ │ │ ├── view-financial-account-liability-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-liability.svg │ │ │ │ │ │ │ ├── view-financial-account-loan-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-loan.svg │ │ │ │ │ │ │ ├── view-financial-account-reopen.svg │ │ │ │ │ │ │ ├── view-financial-account-savings-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-savings.svg │ │ │ │ │ │ │ ├── view-financial-account.svg │ │ │ │ │ │ │ ├── view-financial-budget.svg │ │ │ │ │ │ │ ├── view-financial-category-add.svg │ │ │ │ │ │ │ ├── view-financial-category-delete.svg │ │ │ │ │ │ │ ├── view-financial-category-edit.svg │ │ │ │ │ │ │ ├── view-financial-category-expense.svg │ │ │ │ │ │ │ ├── view-financial-category-income.svg │ │ │ │ │ │ │ ├── view-financial-category.svg │ │ │ │ │ │ │ ├── view-financial-list.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconcile.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconciled.svg │ │ │ │ │ │ │ ├── view-financial-transfer-unreconciled.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-institution-add.svg │ │ │ │ │ │ │ ├── view-institution-delete.svg │ │ │ │ │ │ │ ├── view-institution-edit.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-chart.svg │ │ │ │ │ │ │ ├── view-media-config.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-favorite.svg │ │ │ │ │ │ │ ├── view-media-genre.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playcount.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-recent.svg │ │ │ │ │ │ │ ├── view-media-similarartists.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-track.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-effect.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-unsplit-effect.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewdvi.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── wallet-closed.svg │ │ │ │ │ │ │ ├── wallet-open.svg │ │ │ │ │ │ │ ├── warnnext.svg │ │ │ │ │ │ │ ├── warnprev.svg │ │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── zone-in.svg │ │ │ │ │ │ │ ├── zone-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-pixels.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-logout.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-lock.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ └── xfsm-shutdown.svg │ │ │ │ │ ├── 24 │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-node.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-node.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animal.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── audio-volume-high.svg │ │ │ │ │ │ │ ├── audio-volume-low.svg │ │ │ │ │ │ │ ├── audio-volume-medium.svg │ │ │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── auto-transition.svg │ │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backgroundtool.svg │ │ │ │ │ │ │ ├── bboxnext.svg │ │ │ │ │ │ │ ├── bboxprev.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── calligraphy.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composite-track-off.svg │ │ │ │ │ │ │ ├── composite-track-on.svg │ │ │ │ │ │ │ ├── composite-track-preview.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── cookies.svg │ │ │ │ │ │ │ ├── coordinate.svg │ │ │ │ │ │ │ ├── copy-coordinates.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ │ ├── description.svg │ │ │ │ │ │ │ ├── dfrac.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── discrete.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-node.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-node.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as-template.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── dontknow.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── drag-surface.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dvisearch.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── earthquake.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-group.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit_animation.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entrance_animations.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── errornext.svg │ │ │ │ │ │ │ ├── errorprev.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── exit_animations.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── favorite.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flower-shape.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── food.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-convert-to-path.svg │ │ │ │ │ │ │ ├── format-currency.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-insert-node.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-node-corner.svg │ │ │ │ │ │ │ ├── format-node-curve.svg │ │ │ │ │ │ │ ├── format-node-line.svg │ │ │ │ │ │ │ ├── format-node-smooth.svg │ │ │ │ │ │ │ ├── format-node-symmetric.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-segment-curve.svg │ │ │ │ │ │ │ ├── format-segment-line.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── frmt-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── frmt-text-direction-r2l.svg │ │ │ │ │ │ │ ├── frmt-text-direction-vertical-lr.svg │ │ │ │ │ │ │ ├── frmt-text-direction-vertical.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-autosum.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-bucket.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-accounting.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-all.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-none.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-format-percentage.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-decrease.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-increase.svg │ │ │ │ │ │ │ ├── gnumeric-format-thousand-separator.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-object-arrow.svg │ │ │ │ │ │ │ ├── gnumeric-object-button.svg │ │ │ │ │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ │ │ │ │ ├── gnumeric-object-combo.svg │ │ │ │ │ │ │ ├── gnumeric-object-ellipse.svg │ │ │ │ │ │ │ ├── gnumeric-object-label.svg │ │ │ │ │ │ │ ├── gnumeric-object-line.svg │ │ │ │ │ │ │ ├── gnumeric-object-list.svg │ │ │ │ │ │ │ ├── gnumeric-object-rectangle.svg │ │ │ │ │ │ │ ├── gnumeric-object-scrollbar.svg │ │ │ │ │ │ │ ├── gnumeric-object-spinbutton.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ │ │ │ │ ├── gnumeric-protection-no.svg │ │ │ │ │ │ │ ├── gnumeric-protection-yes.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hand.svg │ │ │ │ │ │ │ ├── handle-left.svg │ │ │ │ │ │ │ ├── handle-move.svg │ │ │ │ │ │ │ ├── handle-right.svg │ │ │ │ │ │ │ ├── handle-sort.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hexagon-shape.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── item.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-composite.svg │ │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-no-composite.svg │ │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── know.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_cbound.svg │ │ │ │ │ │ │ ├── kstars_clines.svg │ │ │ │ │ │ │ ├── kstars_cnames.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_constellationart.svg │ │ │ │ │ │ │ ├── kstars_deepsky.svg │ │ │ │ │ │ │ ├── kstars_ekos.svg │ │ │ │ │ │ │ ├── kstars_fitsviewer.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_grid.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kstars_hgrid.svg │ │ │ │ │ │ │ ├── kstars_horizon.svg │ │ │ │ │ │ │ ├── kstars_indi.svg │ │ │ │ │ │ │ ├── kstars_mw.svg │ │ │ │ │ │ │ ├── kstars_planets.svg │ │ │ │ │ │ │ ├── kstars_satellites.svg │ │ │ │ │ │ │ ├── kstars_solarsystem.svg │ │ │ │ │ │ │ ├── kstars_stars.svg │ │ │ │ │ │ │ ├── kstars_supernovae.svg │ │ │ │ │ │ │ ├── kstars_xplanet.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-1x-zoom.svg │ │ │ │ │ │ │ ├── labplot-2x-zoom.svg │ │ │ │ │ │ │ ├── labplot-3x-zoom.svg │ │ │ │ │ │ │ ├── labplot-4x-zoom.svg │ │ │ │ │ │ │ ├── labplot-5x-zoom.svg │ │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-matrix-new.svg │ │ │ │ │ │ │ ├── labplot-matrix.svg │ │ │ │ │ │ │ ├── labplot-plot-axis-points.svg │ │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-workbook-new.svg │ │ │ │ │ │ │ ├── labplot-workbook.svg │ │ │ │ │ │ │ ├── labplot-worksheet-new.svg │ │ │ │ │ │ │ ├── labplot-worksheet.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-segments.svg │ │ │ │ │ │ │ ├── labplot-xy-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-interpolation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-four-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-smoothing-curve.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── latex-config.svg │ │ │ │ │ │ │ ├── latex.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lilypond.svg │ │ │ │ │ │ │ ├── linear.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── map-flat.svg │ │ │ │ │ │ │ ├── map-globe.svg │ │ │ │ │ │ │ ├── map-gnomonic.svg │ │ │ │ │ │ │ ├── map-mercator.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-mout.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── mesh-gradient.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── motion_path_animations.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── music-note-16th.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── newline.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── nextfuzzy.svg │ │ │ │ │ │ │ ├── nextfuzzyuntrans.svg │ │ │ │ │ │ │ ├── nextuntranslated.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── nroot.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ │ ├── overflow-menu-left.svg │ │ │ │ │ │ │ ├── overflow-menu-right.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paint-order-fms.svg │ │ │ │ │ │ │ ├── paint-order-fsm.svg │ │ │ │ │ │ │ ├── paint-order-mfs.svg │ │ │ │ │ │ │ ├── paint-order-msf.svg │ │ │ │ │ │ │ ├── paint-order-sfm.svg │ │ │ │ │ │ │ ├── paint-order-smf.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── pathshape.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-sync.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── prevfuzzy.svg │ │ │ │ │ │ │ ├── prevfuzzyuntrans.svg │ │ │ │ │ │ │ ├── preview-add-zone.svg │ │ │ │ │ │ │ ├── preview-remove-all.svg │ │ │ │ │ │ │ ├── preview-remove-zone.svg │ │ │ │ │ │ │ ├── preview-render-off.svg │ │ │ │ │ │ │ ├── preview-render-on.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── prevuntranslated.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-defaults.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-all-effects.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-gpu-effects.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── skg-chart-bubble.svg │ │ │ │ │ │ │ ├── skrooge_credit_card.svg │ │ │ │ │ │ │ ├── skrooge_less.svg │ │ │ │ │ │ │ ├── skrooge_more.svg │ │ │ │ │ │ │ ├── skrooge_much_less.svg │ │ │ │ │ │ │ ├── skrooge_much_more.svg │ │ │ │ │ │ │ ├── skrooge_type.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallfrac.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smartnewline.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── smiley-shape.svg │ │ │ │ │ │ │ ├── smiley.svg │ │ │ │ │ │ │ ├── smooth.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_ChargedParticle.svg │ │ │ │ │ │ │ ├── step_object_CircularMotor.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_CoulombForce.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Gas.svg │ │ │ │ │ │ │ ├── step_object_GasParticle.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_GravitationForce.svg │ │ │ │ │ │ │ ├── step_object_LinearMotor.svg │ │ │ │ │ │ │ ├── step_object_Meter.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_SoftBody.svg │ │ │ │ │ │ │ ├── step_object_Spring.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── step_object_Tracer.svg │ │ │ │ │ │ │ ├── step_object_WeightForce.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_volume.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── texcompiler.svg │ │ │ │ │ │ │ ├── texlion.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-orientation-auto.svg │ │ │ │ │ │ │ ├── text-orientation-sideways.svg │ │ │ │ │ │ │ ├── text-orientation-upright.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_remove_kerns.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ │ ├── timeline-extract.svg │ │ │ │ │ │ │ ├── timeline-insert.svg │ │ │ │ │ │ │ ├── timeline-lift.svg │ │ │ │ │ │ │ ├── timeline-overwrite.svg │ │ │ │ │ │ │ ├── timeline-use-zone-off.svg │ │ │ │ │ │ │ ├── timeline-use-zone-on.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_eraser.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_curve.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_free_form_selection.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_spraycan.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── torrents.svg │ │ │ │ │ │ │ ├── transform-browse.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-horizontal.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale-vertical.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── typewriter.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── username-copy.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-chart.svg │ │ │ │ │ │ │ ├── view-media-config.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-favorite.svg │ │ │ │ │ │ │ ├── view-media-genre.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playcount.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-recent.svg │ │ │ │ │ │ │ ├── view-media-similarartists.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-track.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-effect.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-unsplit-effect.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewdvi.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── wallet-closed.svg │ │ │ │ │ │ │ ├── wallet-open.svg │ │ │ │ │ │ │ ├── warnnext.svg │ │ │ │ │ │ │ ├── warnprev.svg │ │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ │ ├── zone-in.svg │ │ │ │ │ │ │ ├── zone-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-center-page.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-pixels.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-lock.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ └── xfsm-shutdown.svg │ │ │ │ │ ├── 32 │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── cursor-cross.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── gnumeric-format-halign-distributed.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-center.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-distributed.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-justify.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-top.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── multiple.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── org.xfce.panel.actions.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-restart.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── xfsm-hibernate.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-suspend.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── weather-clear-night.svg │ │ │ │ │ │ │ ├── weather-clear.svg │ │ │ │ │ │ │ ├── weather-clouds-night.svg │ │ │ │ │ │ │ ├── weather-clouds.svg │ │ │ │ │ │ │ ├── weather-few-clouds-night.svg │ │ │ │ │ │ │ ├── weather-few-clouds.svg │ │ │ │ │ │ │ ├── weather-many-clouds.svg │ │ │ │ │ │ │ ├── weather-showers-scattered.svg │ │ │ │ │ │ │ ├── weather-showers.svg │ │ │ │ │ │ │ ├── weather-storm.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 48 │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 64 │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── weather-clear-night.svg │ │ │ │ │ │ │ ├── weather-clear.svg │ │ │ │ │ │ │ ├── weather-clouds-night.svg │ │ │ │ │ │ │ ├── weather-clouds.svg │ │ │ │ │ │ │ ├── weather-few-clouds-night.svg │ │ │ │ │ │ │ ├── weather-few-clouds.svg │ │ │ │ │ │ │ ├── weather-many-clouds.svg │ │ │ │ │ │ │ ├── weather-overcast.svg │ │ │ │ │ │ │ ├── weather-showers-scattered.svg │ │ │ │ │ │ │ ├── weather-showers.svg │ │ │ │ │ │ │ ├── weather-storm-day.svg │ │ │ │ │ │ │ ├── weather-storm-night.svg │ │ │ │ │ │ │ ├── weather-storm.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 16@2x │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── action-unavailable.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add-subtitle.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcol.svg │ │ │ │ │ │ │ ├── adjustrow.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-on-canvas.svg │ │ │ │ │ │ │ ├── align-sel-as-group.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── attach-path.svg │ │ │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── automated-tasks.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backup.svg │ │ │ │ │ │ │ ├── bad-marker.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bend-path.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── bool-op.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── bounding-box.svg │ │ │ │ │ │ │ ├── boundingbox_bottom.svg │ │ │ │ │ │ │ ├── boundingbox_bottom_left.svg │ │ │ │ │ │ │ ├── boundingbox_bottom_right.svg │ │ │ │ │ │ │ ├── boundingbox_center.svg │ │ │ │ │ │ │ ├── boundingbox_left.svg │ │ │ │ │ │ │ ├── boundingbox_right.svg │ │ │ │ │ │ │ ├── boundingbox_top.svg │ │ │ │ │ │ │ ├── boundingbox_top_left.svg │ │ │ │ │ │ │ ├── boundingbox_top_right.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── bspline.svg │ │ │ │ │ │ │ ├── bug.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── cab_view.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── clone-original.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_copyfullnamestoclip.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_packfiles.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-mode-black-white.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-negative.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-positive.svg │ │ │ │ │ │ │ ├── color-mode-invert-image.svg │ │ │ │ │ │ │ ├── color-mode-invert-text.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── connector-avoid.svg │ │ │ │ │ │ │ ├── connector-ignore.svg │ │ │ │ │ │ │ ├── connector-orthogonal.svg │ │ │ │ │ │ │ ├── construct-grid.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── copy-rotate.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── curvestitching.svg │ │ │ │ │ │ │ ├── cvc-configure.svg │ │ │ │ │ │ │ ├── cvc-connect.svg │ │ │ │ │ │ │ ├── cvc-disconnect.svg │ │ │ │ │ │ │ ├── cvc-info.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── dashed-stroke.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── delete_table.svg │ │ │ │ │ │ │ ├── deletecell.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-fill-and-stroke.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-geometry.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-layers.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-objects.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-path-effects.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-rows-and-columns.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-templates.svg │ │ │ │ │ │ │ ├── dialog-text-and-font.svg │ │ │ │ │ │ │ ├── dialog-tile-clones.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── dissociatecell.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-compareleft.svg │ │ │ │ │ │ │ ├── document-compareright.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-duplicate.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-equal.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-metadata.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-scan.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-single.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── document-unequal.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse-arc.svg │ │ │ │ │ │ │ ├── draw-ellipse-chord.svg │ │ │ │ │ │ │ ├── draw-ellipse-segment.svg │ │ │ │ │ │ │ ├── draw-ellipse-whole.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser-delete-objects.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-geometry-angle-bisector.svg │ │ │ │ │ │ │ ├── draw-geometry-circle-from-radius.svg │ │ │ │ │ │ │ ├── draw-geometry-circle-from-three-points.svg │ │ │ │ │ │ │ ├── draw-geometry-inactive.svg │ │ │ │ │ │ │ ├── draw-geometry-line-parallel.svg │ │ │ │ │ │ │ ├── draw-geometry-line-perpendicular.svg │ │ │ │ │ │ │ ├── draw-geometry-line-segment.svg │ │ │ │ │ │ │ ├── draw-geometry-mirror.svg │ │ │ │ │ │ │ ├── draw-geometry-set-bounding-box.svg │ │ │ │ │ │ │ ├── draw-geometry-show-measuring-info.svg │ │ │ │ │ │ │ ├── draw-geometry.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star-outline.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-trace-background.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-use-pressure.svg │ │ │ │ │ │ │ ├── draw-use-tilt.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-link-lpe.svg │ │ │ │ │ │ │ ├── edit-clone-link.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-duplicate.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-move.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-height-separately.svg │ │ │ │ │ │ │ ├── edit-paste-height.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste-size-separately.svg │ │ │ │ │ │ │ ├── edit-paste-size.svg │ │ │ │ │ │ │ ├── edit-paste-style.svg │ │ │ │ │ │ │ ├── edit-paste-width-separately.svg │ │ │ │ │ │ │ ├── edit-paste-width.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all-layers.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ │ ├── edit-select-same-fill-and-stroke.svg │ │ │ │ │ │ │ ├── edit-select-same-fill.svg │ │ │ │ │ │ │ ├── edit-select-same-object-type.svg │ │ │ │ │ │ │ ├── edit-select-same-stroke-color.svg │ │ │ │ │ │ │ ├── edit-select-same-stroke-style.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-5pts.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embrodery-stitch.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── empty-icon.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── envelope.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── fcitx-anthy.svg │ │ │ │ │ │ │ ├── fcitx-hangul.svg │ │ │ │ │ │ │ ├── fcitx-kbd.svg │ │ │ │ │ │ │ ├── fcitx-vk-active.svg │ │ │ │ │ │ │ ├── fcitx-vk-inactive.svg │ │ │ │ │ │ │ ├── feTile-icon.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-between-many.svg │ │ │ │ │ │ │ ├── fill-between-strokes.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── fill-rule-even-odd.svg │ │ │ │ │ │ │ ├── fill-rule-nonzero.svg │ │ │ │ │ │ │ ├── fillet-chamfer.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── fitmanual.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flatten.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font-face.svg │ │ │ │ │ │ │ ├── font-size-down.svg │ │ │ │ │ │ │ ├── font-size-up.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── foreign_green.svg │ │ │ │ │ │ │ ├── foreign_red.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── gears.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-remote.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pivottable.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-axonometric.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag-new.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-dismiss.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hamburger-menu.svg │ │ │ │ │ │ │ ├── hatches.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate-ars.svg │ │ │ │ │ │ │ ├── help-donate-aud.svg │ │ │ │ │ │ │ ├── help-donate-brl.svg │ │ │ │ │ │ │ ├── help-donate-cad.svg │ │ │ │ │ │ │ ├── help-donate-chf.svg │ │ │ │ │ │ │ ├── help-donate-cny.svg │ │ │ │ │ │ │ ├── help-donate-eur.svg │ │ │ │ │ │ │ ├── help-donate-gbp.svg │ │ │ │ │ │ │ ├── help-donate-inr.svg │ │ │ │ │ │ │ ├── help-donate-jpy.svg │ │ │ │ │ │ │ ├── help-donate-mxn.svg │ │ │ │ │ │ │ ├── help-donate-pln.svg │ │ │ │ │ │ │ ├── help-donate-rub.svg │ │ │ │ │ │ │ ├── help-donate-sek.svg │ │ │ │ │ │ │ ├── help-donate-try.svg │ │ │ │ │ │ │ ├── help-donate-uah.svg │ │ │ │ │ │ │ ├── help-donate-usd.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keyboard-shortcuts.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── highlight-pointer-spot.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── horizontal.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── insertcellcopy.svg │ │ │ │ │ │ │ ├── interactive_simplify.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── interpolate-points.svg │ │ │ │ │ │ │ ├── interpolate.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join-type.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── keyframe-add.svg │ │ │ │ │ │ │ ├── keyframe-disable.svg │ │ │ │ │ │ │ ├── keyframe-duplicate.svg │ │ │ │ │ │ │ ├── keyframe-next.svg │ │ │ │ │ │ │ ├── keyframe-previous.svg │ │ │ │ │ │ │ ├── keyframe-record.svg │ │ │ │ │ │ │ ├── keyframe-remove.svg │ │ │ │ │ │ │ ├── keyframe.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── knot.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kruler-east.svg │ │ │ │ │ │ │ ├── kruler-north.svg │ │ │ │ │ │ │ ├── kruler-south.svg │ │ │ │ │ │ │ ├── kruler-west.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── lastfm-neighbour.svg │ │ │ │ │ │ │ ├── lastfm-personal.svg │ │ │ │ │ │ │ ├── lastfm-recommended.svg │ │ │ │ │ │ │ ├── lastfm-tag.svg │ │ │ │ │ │ │ ├── lattice2.svg │ │ │ │ │ │ │ ├── layer-bottom.svg │ │ │ │ │ │ │ ├── layer-delete.svg │ │ │ │ │ │ │ ├── layer-duplicate.svg │ │ │ │ │ │ │ ├── layer-lower.svg │ │ │ │ │ │ │ ├── layer-new.svg │ │ │ │ │ │ │ ├── layer-next.svg │ │ │ │ │ │ │ ├── layer-previous.svg │ │ │ │ │ │ │ ├── layer-raise.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-top.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── loved_radio.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-archive.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward-attachment.svg │ │ │ │ │ │ │ ├── mail-forward-custom.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-author.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── math1.svg │ │ │ │ │ │ │ ├── math2.svg │ │ │ │ │ │ │ ├── math3.svg │ │ │ │ │ │ │ ├── math7.svg │ │ │ │ │ │ │ ├── math9.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure-segments.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── media-write-cd.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── mergecell-horizontal.svg │ │ │ │ │ │ │ ├── mergecell-vertical.svg │ │ │ │ │ │ │ ├── mergecell.svg │ │ │ │ │ │ │ ├── mesh-gradient-fit.svg │ │ │ │ │ │ │ ├── mesh-gradient.svg │ │ │ │ │ │ │ ├── message-new.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mirror-symmetry.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── no-marker.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── node_insert_max_x.svg │ │ │ │ │ │ │ ├── node_insert_max_y.svg │ │ │ │ │ │ │ ├── node_insert_min_x.svg │ │ │ │ │ │ │ ├── node_insert_min_y.svg │ │ │ │ │ │ │ ├── none.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-fill.svg │ │ │ │ │ │ │ ├── object-flip-hor.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-ver.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-stroke-style.svg │ │ │ │ │ │ │ ├── object-stroke.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-forecast.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── office-report.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── pack-less.svg │ │ │ │ │ │ │ ├── pack-more.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-gradient-conical.svg │ │ │ │ │ │ │ ├── paint-gradient-linear.svg │ │ │ │ │ │ │ ├── paint-gradient-mesh.svg │ │ │ │ │ │ │ ├── paint-gradient-radial.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paint-pattern.svg │ │ │ │ │ │ │ ├── paint-solid.svg │ │ │ │ │ │ │ ├── paint-swatch.svg │ │ │ │ │ │ │ ├── paint-unknown.svg │ │ │ │ │ │ │ ├── paper-color.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-break-apart.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-combine.svg │ │ │ │ │ │ │ ├── path-cut.svg │ │ │ │ │ │ │ ├── path-difference.svg │ │ │ │ │ │ │ ├── path-division.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-exclusion.svg │ │ │ │ │ │ │ ├── path-inset.svg │ │ │ │ │ │ │ ├── path-intersection.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-bspline.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-offset-dynamic.svg │ │ │ │ │ │ │ ├── path-offset-linked.svg │ │ │ │ │ │ │ ├── path-outset.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── path-tweak-attract.svg │ │ │ │ │ │ │ ├── path-tweak-push.svg │ │ │ │ │ │ │ ├── path-tweak-roughen.svg │ │ │ │ │ │ │ ├── path-tweak-shrink.svg │ │ │ │ │ │ │ ├── path-union.svg │ │ │ │ │ │ │ ├── pattern.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective-envelope.svg │ │ │ │ │ │ │ ├── perspective-parallel.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── pixelart-trace.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── powerclip.svg │ │ │ │ │ │ │ ├── powermask.svg │ │ │ │ │ │ │ ├── powerstroke.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preferences-system.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── pts2ellipse.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-asynchronous.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-cleanup.svg │ │ │ │ │ │ │ ├── rabbitvcs-clear.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-compare.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-merge.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-resolve.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── rectangle-make-corners-sharp.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-color.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resizecol.svg │ │ │ │ │ │ │ ├── resizerow.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── retweet.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── rough-hatches.svg │ │ │ │ │ │ │ ├── roughen.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── ruler.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-off.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-on.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── searching.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-above.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-below.svg │ │ │ │ │ │ │ ├── selection-move-to-layer.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection-touch.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-bounding-box.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-guides.svg │ │ │ │ │ │ │ ├── show-handles.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── simplify.svg │ │ │ │ │ │ │ ├── skeletal.svg │ │ │ │ │ │ │ ├── sketch.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slice.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-nodes.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-others.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── source-playlist.svg │ │ │ │ │ │ │ ├── source-smart-playlist.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── spiro.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spray-mode-clone.svg │ │ │ │ │ │ │ ├── spray-mode-copy.svg │ │ │ │ │ │ │ ├── spray-mode-union.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_calc-cancel.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_text-monospaced.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_volume.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── swatches.svg │ │ │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ │ │ ├── switch-on.svg │ │ │ │ │ │ │ ├── symbol-add.svg │ │ │ │ │ │ │ ├── symbol-bigger.svg │ │ │ │ │ │ │ ├── symbol-fit.svg │ │ │ │ │ │ │ ├── symbol-remove.svg │ │ │ │ │ │ │ ├── symbol-smaller.svg │ │ │ │ │ │ │ ├── symbols.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-edit.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-create.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── taper-stroke.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── text-convert-to-regular.svg │ │ │ │ │ │ │ ├── text-field-framed.svg │ │ │ │ │ │ │ ├── text-field-frameless.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-put-on-path.svg │ │ │ │ │ │ │ ├── text-remove-from-path.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-unkern.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_outer_style.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── too-much-ink-icon.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── transform-2pts.svg │ │ │ │ │ │ │ ├── transform-affect-gradient.svg │ │ │ │ │ │ │ ├── transform-affect-pattern.svg │ │ │ │ │ │ │ ├── transform-affect-rounded-corners.svg │ │ │ │ │ │ │ ├── transform-affect-stroke.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── usermenu-delete.svg │ │ │ │ │ │ │ ├── usermenu-down.svg │ │ │ │ │ │ │ ├── usermenu-up.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── vertical.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-add.svg │ │ │ │ │ │ │ ├── view-bank-delete.svg │ │ │ │ │ │ │ ├── view-bank-edit.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-currency-list.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-financial-account-add.svg │ │ │ │ │ │ │ ├── view-financial-account-asset-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-asset.svg │ │ │ │ │ │ │ ├── view-financial-account-cash-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-cash.svg │ │ │ │ │ │ │ ├── view-financial-account-checking-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-checking.svg │ │ │ │ │ │ │ ├── view-financial-account-close.svg │ │ │ │ │ │ │ ├── view-financial-account-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-delete.svg │ │ │ │ │ │ │ ├── view-financial-account-edit.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security.svg │ │ │ │ │ │ │ ├── view-financial-account-investment.svg │ │ │ │ │ │ │ ├── view-financial-account-liability-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-liability.svg │ │ │ │ │ │ │ ├── view-financial-account-loan-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-loan.svg │ │ │ │ │ │ │ ├── view-financial-account-reopen.svg │ │ │ │ │ │ │ ├── view-financial-account-savings-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-savings.svg │ │ │ │ │ │ │ ├── view-financial-account.svg │ │ │ │ │ │ │ ├── view-financial-budget.svg │ │ │ │ │ │ │ ├── view-financial-category-add.svg │ │ │ │ │ │ │ ├── view-financial-category-delete.svg │ │ │ │ │ │ │ ├── view-financial-category-edit.svg │ │ │ │ │ │ │ ├── view-financial-category-expense.svg │ │ │ │ │ │ │ ├── view-financial-category-income.svg │ │ │ │ │ │ │ ├── view-financial-category.svg │ │ │ │ │ │ │ ├── view-financial-list.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconcile.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconciled.svg │ │ │ │ │ │ │ ├── view-financial-transfer-unreconciled.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-institution-add.svg │ │ │ │ │ │ │ ├── view-institution-delete.svg │ │ │ │ │ │ │ ├── view-institution-edit.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-private.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-readermode-active.svg │ │ │ │ │ │ │ ├── view-readermode.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── vonkoch.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ │ ├── xfce-wm-close.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-center-page.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-drawing.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ └── system-lock-screen.svg │ │ │ │ │ ├── 22@2x │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-node.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-node.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animal.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── auto-transition.svg │ │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backgroundtool.svg │ │ │ │ │ │ │ ├── backup.svg │ │ │ │ │ │ │ ├── bboxnext.svg │ │ │ │ │ │ │ ├── bboxprev.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── cab_view.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── calligraphy.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-mode-black-white.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-negative.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-positive.svg │ │ │ │ │ │ │ ├── color-mode-invert-image.svg │ │ │ │ │ │ │ ├── color-mode-invert-text.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composite-track-off.svg │ │ │ │ │ │ │ ├── composite-track-on.svg │ │ │ │ │ │ │ ├── composite-track-preview.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── cookies.svg │ │ │ │ │ │ │ ├── coordinate.svg │ │ │ │ │ │ │ ├── copy-coordinates.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ │ ├── description.svg │ │ │ │ │ │ │ ├── dfrac.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── discrete.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-node.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-node.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as-template.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── dontknow.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── drag-surface.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dvisearch.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── earthquake.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-group.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit_animation.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entrance_animations.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── errornext.svg │ │ │ │ │ │ │ ├── errorprev.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── exit_animations.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── favorite.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ │ │ ├── fitmanual.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flower-shape.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── food.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-convert-to-path.svg │ │ │ │ │ │ │ ├── format-currency.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-insert-node.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-node-corner.svg │ │ │ │ │ │ │ ├── format-node-curve.svg │ │ │ │ │ │ │ ├── format-node-line.svg │ │ │ │ │ │ │ ├── format-node-smooth.svg │ │ │ │ │ │ │ ├── format-node-symmetric.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-segment-curve.svg │ │ │ │ │ │ │ ├── format-segment-line.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-remote.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-autosum.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-bucket.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-accounting.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-all.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-none.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-format-percentage.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-decrease.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-increase.svg │ │ │ │ │ │ │ ├── gnumeric-format-thousand-separator.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-object-arrow.svg │ │ │ │ │ │ │ ├── gnumeric-object-button.svg │ │ │ │ │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ │ │ │ │ ├── gnumeric-object-combo.svg │ │ │ │ │ │ │ ├── gnumeric-object-ellipse.svg │ │ │ │ │ │ │ ├── gnumeric-object-label.svg │ │ │ │ │ │ │ ├── gnumeric-object-line.svg │ │ │ │ │ │ │ ├── gnumeric-object-list.svg │ │ │ │ │ │ │ ├── gnumeric-object-rectangle.svg │ │ │ │ │ │ │ ├── gnumeric-object-scrollbar.svg │ │ │ │ │ │ │ ├── gnumeric-object-spinbutton.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ │ │ │ │ ├── gnumeric-protection-no.svg │ │ │ │ │ │ │ ├── gnumeric-protection-yes.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag-new.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hand.svg │ │ │ │ │ │ │ ├── handle-left.svg │ │ │ │ │ │ │ ├── handle-move.svg │ │ │ │ │ │ │ ├── handle-right.svg │ │ │ │ │ │ │ ├── handle-sort.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hexagon-shape.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-adjust.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── item.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-composite.svg │ │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-no-composite.svg │ │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── know.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_cbound.svg │ │ │ │ │ │ │ ├── kstars_clines.svg │ │ │ │ │ │ │ ├── kstars_cnames.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_constellationart.svg │ │ │ │ │ │ │ ├── kstars_deepsky.svg │ │ │ │ │ │ │ ├── kstars_ekos.svg │ │ │ │ │ │ │ ├── kstars_fitsviewer.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_grid.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kstars_hgrid.svg │ │ │ │ │ │ │ ├── kstars_horizon.svg │ │ │ │ │ │ │ ├── kstars_indi.svg │ │ │ │ │ │ │ ├── kstars_mw.svg │ │ │ │ │ │ │ ├── kstars_planets.svg │ │ │ │ │ │ │ ├── kstars_satellites.svg │ │ │ │ │ │ │ ├── kstars_solarsystem.svg │ │ │ │ │ │ │ ├── kstars_stars.svg │ │ │ │ │ │ │ ├── kstars_supernovae.svg │ │ │ │ │ │ │ ├── kstars_xplanet.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-1x-zoom.svg │ │ │ │ │ │ │ ├── labplot-2x-zoom.svg │ │ │ │ │ │ │ ├── labplot-3x-zoom.svg │ │ │ │ │ │ │ ├── labplot-4x-zoom.svg │ │ │ │ │ │ │ ├── labplot-5x-zoom.svg │ │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-matrix-new.svg │ │ │ │ │ │ │ ├── labplot-matrix.svg │ │ │ │ │ │ │ ├── labplot-plot-axis-points.svg │ │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-workbook-new.svg │ │ │ │ │ │ │ ├── labplot-workbook.svg │ │ │ │ │ │ │ ├── labplot-worksheet-new.svg │ │ │ │ │ │ │ ├── labplot-worksheet.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-segments.svg │ │ │ │ │ │ │ ├── labplot-xy-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-interpolation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-four-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-smoothing-curve.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── latex-config.svg │ │ │ │ │ │ │ ├── latex.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lilypond.svg │ │ │ │ │ │ │ ├── linear.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── map-flat.svg │ │ │ │ │ │ │ ├── map-globe.svg │ │ │ │ │ │ │ ├── map-gnomonic.svg │ │ │ │ │ │ │ ├── map-mercator.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-mout.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── motion_path_animations.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── music-note-16th.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── newline.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── nextfuzzy.svg │ │ │ │ │ │ │ ├── nextfuzzyuntrans.svg │ │ │ │ │ │ │ ├── nextuntranslated.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── nroot.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-forecast.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── office-report.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-magnet.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ │ ├── overflow-menu-left.svg │ │ │ │ │ │ │ ├── overflow-menu-right.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paper-color.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── pathshape.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-sync.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── prevfuzzy.svg │ │ │ │ │ │ │ ├── prevfuzzyuntrans.svg │ │ │ │ │ │ │ ├── preview-add-zone.svg │ │ │ │ │ │ │ ├── preview-remove-all.svg │ │ │ │ │ │ │ ├── preview-remove-zone.svg │ │ │ │ │ │ │ ├── preview-render-off.svg │ │ │ │ │ │ │ ├── preview-render-on.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── prevuntranslated.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-defaults.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-asynchronous.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-compare.svg │ │ │ │ │ │ │ ├── rabbitvcs-createpatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-merge.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── record.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── rime-im.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-all-effects.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-gpu-effects.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── skg-chart-bubble.svg │ │ │ │ │ │ │ ├── skrooge_credit_card.svg │ │ │ │ │ │ │ ├── skrooge_less.svg │ │ │ │ │ │ │ ├── skrooge_more.svg │ │ │ │ │ │ │ ├── skrooge_much_less.svg │ │ │ │ │ │ │ ├── skrooge_much_more.svg │ │ │ │ │ │ │ ├── skrooge_type.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallfrac.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smartnewline.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── smiley-shape.svg │ │ │ │ │ │ │ ├── smiley.svg │ │ │ │ │ │ │ ├── smooth.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_ChargedParticle.svg │ │ │ │ │ │ │ ├── step_object_CircularMotor.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_CoulombForce.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Gas.svg │ │ │ │ │ │ │ ├── step_object_GasParticle.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_GravitationForce.svg │ │ │ │ │ │ │ ├── step_object_LinearMotor.svg │ │ │ │ │ │ │ ├── step_object_Meter.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_SoftBody.svg │ │ │ │ │ │ │ ├── step_object_Spring.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── step_object_Tracer.svg │ │ │ │ │ │ │ ├── step_object_WeightForce.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-filters-apply.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-edit.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── texcompiler.svg │ │ │ │ │ │ │ ├── texlion.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_remove_kerns.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ │ ├── timeline-extract.svg │ │ │ │ │ │ │ ├── timeline-insert.svg │ │ │ │ │ │ │ ├── timeline-lift.svg │ │ │ │ │ │ │ ├── timeline-overwrite.svg │ │ │ │ │ │ │ ├── timeline-use-zone-off.svg │ │ │ │ │ │ │ ├── timeline-use-zone-on.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_eraser.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_curve.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_free_form_selection.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_spraycan.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── torrents.svg │ │ │ │ │ │ │ ├── transform-browse.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-horizontal.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale-vertical.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── typewriter.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── username-copy.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ │ ├── view-bank-add.svg │ │ │ │ │ │ │ ├── view-bank-delete.svg │ │ │ │ │ │ │ ├── view-bank-edit.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-currency-list.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-financial-account-add.svg │ │ │ │ │ │ │ ├── view-financial-account-asset-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-asset.svg │ │ │ │ │ │ │ ├── view-financial-account-cash-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-cash.svg │ │ │ │ │ │ │ ├── view-financial-account-checking-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-checking.svg │ │ │ │ │ │ │ ├── view-financial-account-close.svg │ │ │ │ │ │ │ ├── view-financial-account-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-credit-card-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-credit-card.svg │ │ │ │ │ │ │ ├── view-financial-account-delete.svg │ │ │ │ │ │ │ ├── view-financial-account-edit.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security.svg │ │ │ │ │ │ │ ├── view-financial-account-investment.svg │ │ │ │ │ │ │ ├── view-financial-account-liability-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-liability.svg │ │ │ │ │ │ │ ├── view-financial-account-loan-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-loan.svg │ │ │ │ │ │ │ ├── view-financial-account-reopen.svg │ │ │ │ │ │ │ ├── view-financial-account-savings-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-savings.svg │ │ │ │ │ │ │ ├── view-financial-account.svg │ │ │ │ │ │ │ ├── view-financial-budget.svg │ │ │ │ │ │ │ ├── view-financial-category-add.svg │ │ │ │ │ │ │ ├── view-financial-category-delete.svg │ │ │ │ │ │ │ ├── view-financial-category-edit.svg │ │ │ │ │ │ │ ├── view-financial-category-expense.svg │ │ │ │ │ │ │ ├── view-financial-category-income.svg │ │ │ │ │ │ │ ├── view-financial-category.svg │ │ │ │ │ │ │ ├── view-financial-list.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconcile.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconciled.svg │ │ │ │ │ │ │ ├── view-financial-transfer-unreconciled.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-institution-add.svg │ │ │ │ │ │ │ ├── view-institution-delete.svg │ │ │ │ │ │ │ ├── view-institution-edit.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-chart.svg │ │ │ │ │ │ │ ├── view-media-config.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-favorite.svg │ │ │ │ │ │ │ ├── view-media-genre.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playcount.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-recent.svg │ │ │ │ │ │ │ ├── view-media-similarartists.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-track.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-effect.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-unsplit-effect.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewdvi.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── wallet-closed.svg │ │ │ │ │ │ │ ├── wallet-open.svg │ │ │ │ │ │ │ ├── warnnext.svg │ │ │ │ │ │ │ ├── warnprev.svg │ │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── zone-in.svg │ │ │ │ │ │ │ ├── zone-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-pixels.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-logout.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-lock.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ └── xfsm-shutdown.svg │ │ │ │ │ ├── 24@2x │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-node.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-node.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animal.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── audio-volume-high.svg │ │ │ │ │ │ │ ├── audio-volume-low.svg │ │ │ │ │ │ │ ├── audio-volume-medium.svg │ │ │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── auto-transition.svg │ │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backgroundtool.svg │ │ │ │ │ │ │ ├── bboxnext.svg │ │ │ │ │ │ │ ├── bboxprev.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── calligraphy.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composite-track-off.svg │ │ │ │ │ │ │ ├── composite-track-on.svg │ │ │ │ │ │ │ ├── composite-track-preview.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── cookies.svg │ │ │ │ │ │ │ ├── coordinate.svg │ │ │ │ │ │ │ ├── copy-coordinates.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ │ ├── description.svg │ │ │ │ │ │ │ ├── dfrac.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── discrete.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-node.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-node.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as-template.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── dontknow.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── drag-surface.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dvisearch.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── earthquake.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-group.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit_animation.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entrance_animations.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── errornext.svg │ │ │ │ │ │ │ ├── errorprev.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── exit_animations.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── favorite.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flower-shape.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── food.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-convert-to-path.svg │ │ │ │ │ │ │ ├── format-currency.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-insert-node.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-node-corner.svg │ │ │ │ │ │ │ ├── format-node-curve.svg │ │ │ │ │ │ │ ├── format-node-line.svg │ │ │ │ │ │ │ ├── format-node-smooth.svg │ │ │ │ │ │ │ ├── format-node-symmetric.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-segment-curve.svg │ │ │ │ │ │ │ ├── format-segment-line.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── frmt-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── frmt-text-direction-r2l.svg │ │ │ │ │ │ │ ├── frmt-text-direction-vertical-lr.svg │ │ │ │ │ │ │ ├── frmt-text-direction-vertical.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-autosum.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-bucket.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-accounting.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-all.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-none.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-format-percentage.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-decrease.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-increase.svg │ │ │ │ │ │ │ ├── gnumeric-format-thousand-separator.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-object-arrow.svg │ │ │ │ │ │ │ ├── gnumeric-object-button.svg │ │ │ │ │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ │ │ │ │ ├── gnumeric-object-combo.svg │ │ │ │ │ │ │ ├── gnumeric-object-ellipse.svg │ │ │ │ │ │ │ ├── gnumeric-object-label.svg │ │ │ │ │ │ │ ├── gnumeric-object-line.svg │ │ │ │ │ │ │ ├── gnumeric-object-list.svg │ │ │ │ │ │ │ ├── gnumeric-object-rectangle.svg │ │ │ │ │ │ │ ├── gnumeric-object-scrollbar.svg │ │ │ │ │ │ │ ├── gnumeric-object-spinbutton.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ │ │ │ │ ├── gnumeric-protection-no.svg │ │ │ │ │ │ │ ├── gnumeric-protection-yes.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hand.svg │ │ │ │ │ │ │ ├── handle-left.svg │ │ │ │ │ │ │ ├── handle-move.svg │ │ │ │ │ │ │ ├── handle-right.svg │ │ │ │ │ │ │ ├── handle-sort.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hexagon-shape.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── item.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-composite.svg │ │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-no-composite.svg │ │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── know.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_cbound.svg │ │ │ │ │ │ │ ├── kstars_clines.svg │ │ │ │ │ │ │ ├── kstars_cnames.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_constellationart.svg │ │ │ │ │ │ │ ├── kstars_deepsky.svg │ │ │ │ │ │ │ ├── kstars_ekos.svg │ │ │ │ │ │ │ ├── kstars_fitsviewer.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_grid.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kstars_hgrid.svg │ │ │ │ │ │ │ ├── kstars_horizon.svg │ │ │ │ │ │ │ ├── kstars_indi.svg │ │ │ │ │ │ │ ├── kstars_mw.svg │ │ │ │ │ │ │ ├── kstars_planets.svg │ │ │ │ │ │ │ ├── kstars_satellites.svg │ │ │ │ │ │ │ ├── kstars_solarsystem.svg │ │ │ │ │ │ │ ├── kstars_stars.svg │ │ │ │ │ │ │ ├── kstars_supernovae.svg │ │ │ │ │ │ │ ├── kstars_xplanet.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-1x-zoom.svg │ │ │ │ │ │ │ ├── labplot-2x-zoom.svg │ │ │ │ │ │ │ ├── labplot-3x-zoom.svg │ │ │ │ │ │ │ ├── labplot-4x-zoom.svg │ │ │ │ │ │ │ ├── labplot-5x-zoom.svg │ │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-matrix-new.svg │ │ │ │ │ │ │ ├── labplot-matrix.svg │ │ │ │ │ │ │ ├── labplot-plot-axis-points.svg │ │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-workbook-new.svg │ │ │ │ │ │ │ ├── labplot-workbook.svg │ │ │ │ │ │ │ ├── labplot-worksheet-new.svg │ │ │ │ │ │ │ ├── labplot-worksheet.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-segments.svg │ │ │ │ │ │ │ ├── labplot-xy-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-interpolation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-four-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-smoothing-curve.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── latex-config.svg │ │ │ │ │ │ │ ├── latex.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lilypond.svg │ │ │ │ │ │ │ ├── linear.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── map-flat.svg │ │ │ │ │ │ │ ├── map-globe.svg │ │ │ │ │ │ │ ├── map-gnomonic.svg │ │ │ │ │ │ │ ├── map-mercator.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-mout.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── mesh-gradient.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── motion_path_animations.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── music-note-16th.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── newline.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── nextfuzzy.svg │ │ │ │ │ │ │ ├── nextfuzzyuntrans.svg │ │ │ │ │ │ │ ├── nextuntranslated.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── nroot.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ │ ├── overflow-menu-left.svg │ │ │ │ │ │ │ ├── overflow-menu-right.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paint-order-fms.svg │ │ │ │ │ │ │ ├── paint-order-fsm.svg │ │ │ │ │ │ │ ├── paint-order-mfs.svg │ │ │ │ │ │ │ ├── paint-order-msf.svg │ │ │ │ │ │ │ ├── paint-order-sfm.svg │ │ │ │ │ │ │ ├── paint-order-smf.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── pathshape.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-sync.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── prevfuzzy.svg │ │ │ │ │ │ │ ├── prevfuzzyuntrans.svg │ │ │ │ │ │ │ ├── preview-add-zone.svg │ │ │ │ │ │ │ ├── preview-remove-all.svg │ │ │ │ │ │ │ ├── preview-remove-zone.svg │ │ │ │ │ │ │ ├── preview-render-off.svg │ │ │ │ │ │ │ ├── preview-render-on.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── prevuntranslated.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-defaults.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-all-effects.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-gpu-effects.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── skg-chart-bubble.svg │ │ │ │ │ │ │ ├── skrooge_credit_card.svg │ │ │ │ │ │ │ ├── skrooge_less.svg │ │ │ │ │ │ │ ├── skrooge_more.svg │ │ │ │ │ │ │ ├── skrooge_much_less.svg │ │ │ │ │ │ │ ├── skrooge_much_more.svg │ │ │ │ │ │ │ ├── skrooge_type.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallfrac.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smartnewline.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── smiley-shape.svg │ │ │ │ │ │ │ ├── smiley.svg │ │ │ │ │ │ │ ├── smooth.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_ChargedParticle.svg │ │ │ │ │ │ │ ├── step_object_CircularMotor.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_CoulombForce.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Gas.svg │ │ │ │ │ │ │ ├── step_object_GasParticle.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_GravitationForce.svg │ │ │ │ │ │ │ ├── step_object_LinearMotor.svg │ │ │ │ │ │ │ ├── step_object_Meter.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_SoftBody.svg │ │ │ │ │ │ │ ├── step_object_Spring.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── step_object_Tracer.svg │ │ │ │ │ │ │ ├── step_object_WeightForce.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_volume.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── texcompiler.svg │ │ │ │ │ │ │ ├── texlion.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-orientation-auto.svg │ │ │ │ │ │ │ ├── text-orientation-sideways.svg │ │ │ │ │ │ │ ├── text-orientation-upright.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_remove_kerns.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ │ ├── timeline-extract.svg │ │ │ │ │ │ │ ├── timeline-insert.svg │ │ │ │ │ │ │ ├── timeline-lift.svg │ │ │ │ │ │ │ ├── timeline-overwrite.svg │ │ │ │ │ │ │ ├── timeline-use-zone-off.svg │ │ │ │ │ │ │ ├── timeline-use-zone-on.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_eraser.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_curve.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_free_form_selection.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_spraycan.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── torrents.svg │ │ │ │ │ │ │ ├── transform-browse.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-horizontal.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale-vertical.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── typewriter.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── username-copy.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-chart.svg │ │ │ │ │ │ │ ├── view-media-config.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-favorite.svg │ │ │ │ │ │ │ ├── view-media-genre.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playcount.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-recent.svg │ │ │ │ │ │ │ ├── view-media-similarartists.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-track.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-effect.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-unsplit-effect.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewdvi.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── wallet-closed.svg │ │ │ │ │ │ │ ├── wallet-open.svg │ │ │ │ │ │ │ ├── warnnext.svg │ │ │ │ │ │ │ ├── warnprev.svg │ │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ │ ├── zone-in.svg │ │ │ │ │ │ │ ├── zone-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-center-page.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-pixels.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-lock.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ └── xfsm-shutdown.svg │ │ │ │ │ ├── 32@2x │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── cursor-cross.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── gnumeric-format-halign-distributed.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-center.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-distributed.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-justify.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-top.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── multiple.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── org.xfce.panel.actions.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-restart.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── xfsm-hibernate.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-suspend.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── weather-clear-night.svg │ │ │ │ │ │ │ ├── weather-clear.svg │ │ │ │ │ │ │ ├── weather-clouds-night.svg │ │ │ │ │ │ │ ├── weather-clouds.svg │ │ │ │ │ │ │ ├── weather-few-clouds-night.svg │ │ │ │ │ │ │ ├── weather-few-clouds.svg │ │ │ │ │ │ │ ├── weather-many-clouds.svg │ │ │ │ │ │ │ ├── weather-showers-scattered.svg │ │ │ │ │ │ │ ├── weather-showers.svg │ │ │ │ │ │ │ ├── weather-storm.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 48@2x │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 64@2x │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── weather-clear-night.svg │ │ │ │ │ │ │ ├── weather-clear.svg │ │ │ │ │ │ │ ├── weather-clouds-night.svg │ │ │ │ │ │ │ ├── weather-clouds.svg │ │ │ │ │ │ │ ├── weather-few-clouds-night.svg │ │ │ │ │ │ │ ├── weather-few-clouds.svg │ │ │ │ │ │ │ ├── weather-many-clouds.svg │ │ │ │ │ │ │ ├── weather-overcast.svg │ │ │ │ │ │ │ ├── weather-showers-scattered.svg │ │ │ │ │ │ │ ├── weather-showers.svg │ │ │ │ │ │ │ ├── weather-storm-day.svg │ │ │ │ │ │ │ ├── weather-storm-night.svg │ │ │ │ │ │ │ ├── weather-storm.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 8@2x │ │ │ │ │ │ └── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ └── vcs-added.svg │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.theme │ │ │ │ │ ├── symbolic │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── action-unavailable-symbolic.svg │ │ │ │ │ │ │ ├── add-files-to-archive-symbolic.svg │ │ │ │ │ │ │ ├── address-book-new-symbolic.svg │ │ │ │ │ │ │ ├── align-horizontal-center-symbolic.svg │ │ │ │ │ │ │ ├── align-horizontal-left-symbolic.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor-symbolic.svg │ │ │ │ │ │ │ ├── align-horizontal-right-symbolic.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor-symbolic.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-symbolic.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor-symbolic.svg │ │ │ │ │ │ │ ├── align-vertical-center-symbolic.svg │ │ │ │ │ │ │ ├── align-vertical-top-symbolic.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor-symbolic.svg │ │ │ │ │ │ │ ├── app-installed-symbolic.svg │ │ │ │ │ │ │ ├── app-remove-symbolic.svg │ │ │ │ │ │ │ ├── application-add-symbolic.svg │ │ │ │ │ │ │ ├── application-exit-symbolic.svg │ │ │ │ │ │ │ ├── application-menu-symbolic.svg │ │ │ │ │ │ │ ├── appointment-new-symbolic.svg │ │ │ │ │ │ │ ├── appointment-symbolic.svg │ │ │ │ │ │ │ ├── archive-symbolic.svg │ │ │ │ │ │ │ ├── bookmark-add-symbolic.svg │ │ │ │ │ │ │ ├── bookmark-new-symbolic.svg │ │ │ │ │ │ │ ├── brisk_system-log-out-symbolic.svg │ │ │ │ │ │ │ ├── browser-download-symbolic.svg │ │ │ │ │ │ │ ├── ca.desrt.dconf-editor.big-rows-symbolic.svg │ │ │ │ │ │ │ ├── ca.desrt.dconf-editor.small-rows-symbolic.svg │ │ │ │ │ │ │ ├── calendar-go-today-symbolic.svg │ │ │ │ │ │ │ ├── call-end-symbolic.svg │ │ │ │ │ │ │ ├── call-start-symbolic.svg │ │ │ │ │ │ │ ├── call-stop-symbolic.svg │ │ │ │ │ │ │ ├── call-voicemail-symbolic.svg │ │ │ │ │ │ │ ├── camera-switch-symbolic.svg │ │ │ │ │ │ │ ├── caps-lock-off-symbolic.svg │ │ │ │ │ │ │ ├── caps-lock-symbolic.svg │ │ │ │ │ │ │ ├── carousel-arrow-previous-symbolic.svg │ │ │ │ │ │ │ ├── category-search-symbolic.svg │ │ │ │ │ │ │ ├── change-date-symbolic.svg │ │ │ │ │ │ │ ├── chat-message-new-symbolic.svg │ │ │ │ │ │ │ ├── chat-none-symbolic.svg │ │ │ │ │ │ │ ├── chat-symbolic.svg │ │ │ │ │ │ │ ├── cigarette-none-symbolic.svg │ │ │ │ │ │ │ ├── cigarette-symbolic.svg │ │ │ │ │ │ │ ├── cinnamon-caps-lock-off-symbolic.svg │ │ │ │ │ │ │ ├── cinnamon-caps-lock-symbolic.svg │ │ │ │ │ │ │ ├── cinnamon-num-lock-off-symbolic.svg │ │ │ │ │ │ │ ├── cinnamon-num-lock-symbolic.svg │ │ │ │ │ │ │ ├── close-symbolic.svg │ │ │ │ │ │ │ ├── collapse-all-symbolic.svg │ │ │ │ │ │ │ ├── color-profile-symbolic.svg │ │ │ │ │ │ │ ├── color-select-symbolic.svg │ │ │ │ │ │ │ ├── comment-symbolic.svg │ │ │ │ │ │ │ ├── contact-new-symbolic.svg │ │ │ │ │ │ │ ├── content-loading-symbolic.svg │ │ │ │ │ │ │ ├── desktop-symbolic.svg │ │ │ │ │ │ │ ├── detach-symbolic.svg │ │ │ │ │ │ │ ├── dino-double-tick-symbolic.svg │ │ │ │ │ │ │ ├── dino-tick-symbolic.svg │ │ │ │ │ │ │ ├── display-symbolic.svg │ │ │ │ │ │ │ ├── document-edit-symbolic.svg │ │ │ │ │ │ │ ├── document-export-symbolic-rtl.svg │ │ │ │ │ │ │ ├── document-export-symbolic.svg │ │ │ │ │ │ │ ├── document-import-symbolic-rtl.svg │ │ │ │ │ │ │ ├── document-import-symbolic.svg │ │ │ │ │ │ │ ├── document-new-symbolic.svg │ │ │ │ │ │ │ ├── document-open-recent-symbolic.svg │ │ │ │ │ │ │ ├── document-open-symbolic.svg │ │ │ │ │ │ │ ├── document-page-setup-symbolic.svg │ │ │ │ │ │ │ ├── document-print-preview-symbolic.svg │ │ │ │ │ │ │ ├── document-print-symbolic.svg │ │ │ │ │ │ │ ├── document-properties-symbolic.svg │ │ │ │ │ │ │ ├── document-revert-rtl-symbolic.svg │ │ │ │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ │ │ │ ├── document-revert-symbolic.svg │ │ │ │ │ │ │ ├── document-save-as-symbolic.svg │ │ │ │ │ │ │ ├── document-save-symbolic.svg │ │ │ │ │ │ │ ├── document-send-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-symbolic-rtl.svg │ │ │ │ │ │ │ ├── edit-clear-symbolic.svg │ │ │ │ │ │ │ ├── edit-copy-symbolic.svg │ │ │ │ │ │ │ ├── edit-cut-symbolic.svg │ │ │ │ │ │ │ ├── edit-delete-symbolic.svg │ │ │ │ │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ │ │ │ │ ├── edit-find-symbolic.svg │ │ │ │ │ │ │ ├── edit-flag-symbolic.svg │ │ │ │ │ │ │ ├── edit-paste-symbolic.svg │ │ │ │ │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-redo-symbolic-rtl.svg │ │ │ │ │ │ │ ├── edit-redo-symbolic.svg │ │ │ │ │ │ │ ├── edit-select-all-symbolic.svg │ │ │ │ │ │ │ ├── edit-select-symbolic.svg │ │ │ │ │ │ │ ├── edit-symbolic.svg │ │ │ │ │ │ │ ├── edit-tag-symbolic.svg │ │ │ │ │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-undo-symbolic-rtl.svg │ │ │ │ │ │ │ ├── edit-undo-symbolic.svg │ │ │ │ │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ │ │ │ │ ├── ephy-bookmark-tag-symbolic.svg │ │ │ │ │ │ │ ├── ephy-bookmarks-symbolic.svg │ │ │ │ │ │ │ ├── ephy-reader-mode-symbolic.svg │ │ │ │ │ │ │ ├── error-correct-symbolic.svg │ │ │ │ │ │ │ ├── expand-all-symbolic.svg │ │ │ │ │ │ │ ├── explore2-symbolic.svg │ │ │ │ │ │ │ ├── export-symbolic.svg │ │ │ │ │ │ │ ├── extension-symbolic.svg │ │ │ │ │ │ │ ├── external-link-symbolic.svg │ │ │ │ │ │ │ ├── extract-archive-symbolic.svg │ │ │ │ │ │ │ ├── eye-not-looking-symbolic.svg │ │ │ │ │ │ │ ├── eye-open-negative-filled-symbolic.svg │ │ │ │ │ │ │ ├── favorite-new-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-fullwidth-active-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-fullwidth-inactive-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-kbd-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-punc-active-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-punc-inactive-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-vk-active-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-vk-inactive-symbolic.svg │ │ │ │ │ │ │ ├── file-catalog-symbolic.svg │ │ │ │ │ │ │ ├── file-library-symbolic.svg │ │ │ │ │ │ │ ├── file-search-symbolic.svg │ │ │ │ │ │ │ ├── filter-symbolic.svg │ │ │ │ │ │ │ ├── find-location-symbolic.svg │ │ │ │ │ │ │ ├── flag-outline-thin-symbolic.svg │ │ │ │ │ │ │ ├── flag-symbolic.svg │ │ │ │ │ │ │ ├── focus-legacy-systray-symbolic.svg │ │ │ │ │ │ │ ├── focus-top-bar-symbolic.svg │ │ │ │ │ │ │ ├── focus-windows-symbolic.svg │ │ │ │ │ │ │ ├── folder-new-symbolic.svg │ │ │ │ │ │ │ ├── font-color-symbolic.svg │ │ │ │ │ │ │ ├── font-select-symbolic.svg │ │ │ │ │ │ │ ├── font-size-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-less-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-indent-less-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-more-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-indent-more-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-center-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-left-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-right-symbolic.svg │ │ │ │ │ │ │ ├── format-ordered-list-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-ordered-list-symbolic.svg │ │ │ │ │ │ │ ├── format-text-bold-es-symbolic.svg │ │ │ │ │ │ │ ├── format-text-bold-fr-symbolic.svg │ │ │ │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ │ │ │ ├── format-text-clear-formatting-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-symbolic.svg │ │ │ │ │ │ │ ├── format-text-italic-es-symbolic.svg │ │ │ │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ │ │ │ ├── format-text-larger-symbolic.svg │ │ │ │ │ │ │ ├── format-text-remove-formatting-symbolic.svg │ │ │ │ │ │ │ ├── format-text-remove-symbolic.svg │ │ │ │ │ │ │ ├── format-text-smaller-symbolic.svg │ │ │ │ │ │ │ ├── format-text-strikethrough-fr-symbolic.svg │ │ │ │ │ │ │ ├── format-text-strikethrough-symbolic.svg │ │ │ │ │ │ │ ├── format-text-underline-fr-symbolic.svg │ │ │ │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ │ │ │ ├── format-toolbar-toggle-symbolic.svg │ │ │ │ │ │ │ ├── format-unordered-list-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-unordered-list-symbolic.svg │ │ │ │ │ │ │ ├── forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── forward-symbolic.svg │ │ │ │ │ │ │ ├── globe-symbolic.svg │ │ │ │ │ │ │ ├── go-bottom-symbolic.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-first-symbolic.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-jump-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-jump-symbolic.svg │ │ │ │ │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-last-symbolic.svg │ │ │ │ │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-top-symbolic.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── graveyard-symbolic.svg │ │ │ │ │ │ │ ├── gtk-about-symbolic.svg │ │ │ │ │ │ │ ├── heart-filled-symbolic.svg │ │ │ │ │ │ │ ├── help-about-symbolic.svg │ │ │ │ │ │ │ ├── help-contents-symbolic.svg │ │ │ │ │ │ │ ├── help-info-symbolic.svg │ │ │ │ │ │ │ ├── histogram-symbolic.svg │ │ │ │ │ │ │ ├── image-crop-symbolic.svg │ │ │ │ │ │ │ ├── image-denoise-symbolic.svg │ │ │ │ │ │ │ ├── image-filter-symbolic.svg │ │ │ │ │ │ │ ├── image-flip-horizontal-symbolic.svg │ │ │ │ │ │ │ ├── image-flip-vertical-symbolic.svg │ │ │ │ │ │ │ ├── image-invert-symbolic.svg │ │ │ │ │ │ │ ├── image-navigator-symbolic.svg │ │ │ │ │ │ │ ├── image-red-eye-symbolic.svg │ │ │ │ │ │ │ ├── image-resize-symbolic.svg │ │ │ │ │ │ │ ├── image-rotate-left-symbolic.svg │ │ │ │ │ │ │ ├── image-rotate-right-symbolic.svg │ │ │ │ │ │ │ ├── image-rotate-symbolic.svg │ │ │ │ │ │ │ ├── image-sharpen-symbolic.svg │ │ │ │ │ │ │ ├── image-straighten-symbolic.svg │ │ │ │ │ │ │ ├── inbox-symbolic.svg │ │ │ │ │ │ │ ├── insert-emoticon-symbolic.svg │ │ │ │ │ │ │ ├── insert-image-symbolic.svg │ │ │ │ │ │ │ ├── insert-link-symbolic.svg │ │ │ │ │ │ │ ├── insert-object-symbolic.svg │ │ │ │ │ │ │ ├── insert-text-symbolic.svg │ │ │ │ │ │ │ ├── keyboard-caps-lock-filled-symbolic.svg │ │ │ │ │ │ │ ├── keyboard-enter-symbolic.svg │ │ │ │ │ │ │ ├── keyboard-hide-symbolic.svg │ │ │ │ │ │ │ ├── keyboard-layout-filled-symbolic.svg │ │ │ │ │ │ │ ├── keyboard-shift-filled-symbolic.svg │ │ │ │ │ │ │ ├── link-symbolic.svg │ │ │ │ │ │ │ ├── list-add-symbolic.svg │ │ │ │ │ │ │ ├── list-edit-symbolic.svg │ │ │ │ │ │ │ ├── list-remove-all-symbolic.svg │ │ │ │ │ │ │ ├── list-remove-symbolic.svg │ │ │ │ │ │ │ ├── location-symbolic.svg │ │ │ │ │ │ │ ├── mail-archive-symbolic.svg │ │ │ │ │ │ │ ├── mail-attachment-symbolic.svg │ │ │ │ │ │ │ ├── mail-drafts-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-drafts-symbolic.svg │ │ │ │ │ │ │ ├── mail-flag-symbolic.svg │ │ │ │ │ │ │ ├── mail-forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── mail-forward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-forward-symbolic.svg │ │ │ │ │ │ │ ├── mail-inbox-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-junk-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-read-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-unread-symbolic.svg │ │ │ │ │ │ │ ├── mail-message-new-symbolic.svg │ │ │ │ │ │ │ ├── mail-move-symbolic.svg │ │ │ │ │ │ │ ├── mail-outbox-symbolic.svg │ │ │ │ │ │ │ ├── mail-reply-all-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-reply-all-symbolic.svg │ │ │ │ │ │ │ ├── mail-reply-rtl-symbolic.svg │ │ │ │ │ │ │ ├── mail-reply-sender-rtl-symbolic.svg │ │ │ │ │ │ │ ├── mail-reply-sender-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-reply-sender-symbolic.svg │ │ │ │ │ │ │ ├── mail-reply-symbolic.svg │ │ │ │ │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ │ │ │ │ ├── mail-send-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-send-symbolic.svg │ │ │ │ │ │ │ ├── mail-sent-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-sent-symbolic.svg │ │ │ │ │ │ │ ├── mail-spam-symbolic.svg │ │ │ │ │ │ │ ├── map-symbolic.svg │ │ │ │ │ │ │ ├── mark-location-symbolic.svg │ │ │ │ │ │ │ ├── marker-symbolic.svg │ │ │ │ │ │ │ ├── media-eject-symbolic.svg │ │ │ │ │ │ │ ├── media-eq-symbolic.svg │ │ │ │ │ │ │ ├── media-mount-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-play-pause-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-start-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playback-start-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-no-repeat-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-once-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-one-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ │ │ │ │ ├── media-record-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-skip-forward-symbolic.svg │ │ │ │ │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ │ │ │ │ ├── message-indicator-symbolic.svg │ │ │ │ │ │ │ ├── money-none-symbolic.svg │ │ │ │ │ │ │ ├── money-symbolic.svg │ │ │ │ │ │ │ ├── mount-archive-symbolic.svg │ │ │ │ │ │ │ ├── multimedia-equalizer-symbolic.svg │ │ │ │ │ │ │ ├── nemo-auto-arrange-symbolic.svg │ │ │ │ │ │ │ ├── nemo-desktop-scale-symbolic.svg │ │ │ │ │ │ │ ├── nemo-horizontal-layout-symbolic.svg │ │ │ │ │ │ │ ├── nemo-horizontal-layout-wide-symbolic.svg │ │ │ │ │ │ │ ├── nemo-recursive-search-symbolic.svg │ │ │ │ │ │ │ ├── nemo-vertical-layout-symbolic.svg │ │ │ │ │ │ │ ├── nemo-vertical-layout-wide-symbolic.svg │ │ │ │ │ │ │ ├── new-star-symbolic.svg │ │ │ │ │ │ │ ├── non-starred-symbolic.svg │ │ │ │ │ │ │ ├── notification-alert-symbolic.svg │ │ │ │ │ │ │ ├── nudity-none-symbolic.svg │ │ │ │ │ │ │ ├── nudity-symbolic.svg │ │ │ │ │ │ │ ├── num-lock-off-symbolic.svg │ │ │ │ │ │ │ ├── num-lock-symbolic.svg │ │ │ │ │ │ │ ├── object-flip-horizontal-symbolic.svg │ │ │ │ │ │ │ ├── object-flip-vertical-symbolic.svg │ │ │ │ │ │ │ ├── object-group-symbolic.svg │ │ │ │ │ │ │ ├── object-inverse-symbolic.svg │ │ │ │ │ │ │ ├── object-merge-symbolic.svg │ │ │ │ │ │ │ ├── object-move-symbolic.svg │ │ │ │ │ │ │ ├── object-rotate-left-symbolic.svg │ │ │ │ │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ │ │ │ │ ├── object-select-symbolic.svg │ │ │ │ │ │ │ ├── object-straighten-symbolic.svg │ │ │ │ │ │ │ ├── object-ungroup-symbolic.svg │ │ │ │ │ │ │ ├── open-menu-symbolic.svg │ │ │ │ │ │ │ ├── outbox-symbolic.svg │ │ │ │ │ │ │ ├── padlock-open-symbolic.svg │ │ │ │ │ │ │ ├── palette-symbolic.svg │ │ │ │ │ │ │ ├── pan-down-symbolic.svg │ │ │ │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pan-end-symbolic.svg │ │ │ │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pan-start-symbolic.svg │ │ │ │ │ │ │ ├── pan-up-symbolic.svg │ │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pane-hide-symbolic.svg │ │ │ │ │ │ │ ├── pane-show-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pane-show-symbolic.svg │ │ │ │ │ │ │ ├── path-break-apart-symbolic.svg │ │ │ │ │ │ │ ├── path-combine-symbolic.svg │ │ │ │ │ │ │ ├── path-difference-symbolic.svg │ │ │ │ │ │ │ ├── path-division-symbolic.svg │ │ │ │ │ │ │ ├── path-exclusion-symbolic.svg │ │ │ │ │ │ │ ├── path-intersection-symbolic.svg │ │ │ │ │ │ │ ├── path-union-symbolic.svg │ │ │ │ │ │ │ ├── phonelink-ring-symbolic.svg │ │ │ │ │ │ │ ├── pin-symbolic.svg │ │ │ │ │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ │ │ │ │ ├── pointer-drag-symbolic.svg │ │ │ │ │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ │ │ │ │ ├── pointer-secondary-click-symbolic.svg │ │ │ │ │ │ │ ├── process-stop-symbolic.svg │ │ │ │ │ │ │ ├── pub-symbolic.svg │ │ │ │ │ │ │ ├── qrscanner-symbolic.svg │ │ │ │ │ │ │ ├── reply-all-rtl-symbolic.svg │ │ │ │ │ │ │ ├── reply-all-symbolic-rtl.svg │ │ │ │ │ │ │ ├── reply-all-symbolic.svg │ │ │ │ │ │ │ ├── reply-rtl-symbolic.svg │ │ │ │ │ │ │ ├── reply-symbolic.svg │ │ │ │ │ │ │ ├── safety-symbolic.svg │ │ │ │ │ │ │ ├── scan-type-adf-symbolic.svg │ │ │ │ │ │ │ ├── scan-type-batch-symbolic.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-off-symbolic.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-on-symbolic.svg │ │ │ │ │ │ │ ├── screensaver-switch-users-symbolic.svg │ │ │ │ │ │ │ ├── screensaver-unlock-symbolic.svg │ │ │ │ │ │ │ ├── search-symbolic.svg │ │ │ │ │ │ │ ├── selection-bottom-symbolic.svg │ │ │ │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ │ │ │ ├── selection-end-symbolic.svg │ │ │ │ │ │ │ ├── selection-lower-symbolic.svg │ │ │ │ │ │ │ ├── selection-raise-symbolic.svg │ │ │ │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── selection-start-symbolic.svg │ │ │ │ │ │ │ ├── selection-symbolic.svg │ │ │ │ │ │ │ ├── selection-top-symbolic.svg │ │ │ │ │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ │ │ │ │ ├── semi-starred-symbolic.svg │ │ │ │ │ │ │ ├── send-to-symbolic.svg │ │ │ │ │ │ │ ├── sidebar-hide-symbolic.svg │ │ │ │ │ │ │ ├── sidebar-places-symbolic.svg │ │ │ │ │ │ │ ├── sidebar-show-symbolic.svg │ │ │ │ │ │ │ ├── sidebar-tree-symbolic.svg │ │ │ │ │ │ │ ├── sign-language-symbolic.svg │ │ │ │ │ │ │ ├── sms-symbolic.svg │ │ │ │ │ │ │ ├── spam-symbolic.svg │ │ │ │ │ │ │ ├── special-effects-symbolic.svg │ │ │ │ │ │ │ ├── star-new-symbolic.svg │ │ │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ │ │ ├── stopwatch-symbolic.svg │ │ │ │ │ │ │ ├── strong-language-none-symbolic.svg │ │ │ │ │ │ │ ├── strong-language-symbolic.svg │ │ │ │ │ │ │ ├── system-hibernate-symbolic.svg │ │ │ │ │ │ │ ├── system-lock-screen-symbolic.svg │ │ │ │ │ │ │ ├── system-log-out-symbolic.svg │ │ │ │ │ │ │ ├── system-reboot-symbolic.svg │ │ │ │ │ │ │ ├── system-restart-symbolic.svg │ │ │ │ │ │ │ ├── system-run-symbolic.svg │ │ │ │ │ │ │ ├── system-search-symbolic.svg │ │ │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ │ │ ├── system-suspend-symbolic.svg │ │ │ │ │ │ │ ├── system-switch-user-symbolic.svg │ │ │ │ │ │ │ ├── tab-new-symbolic.svg │ │ │ │ │ │ │ ├── tag-new-symbolic.svg │ │ │ │ │ │ │ ├── tag-symbolic-rtl.svg │ │ │ │ │ │ │ ├── tag-symbolic.svg │ │ │ │ │ │ │ ├── test-pass-symbolic.svg │ │ │ │ │ │ │ ├── timer-symbolic.svg │ │ │ │ │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ │ │ │ │ ├── tools-symbolic.svg │ │ │ │ │ │ │ ├── tools-timer-symbolic.svg │ │ │ │ │ │ │ ├── twitter-dm-symbolic.svg │ │ │ │ │ │ │ ├── twitter-home-symbolic.svg │ │ │ │ │ │ │ ├── twitter-mentions-symbolic.svg │ │ │ │ │ │ │ ├── twitter-profile-symbolic.svg │ │ │ │ │ │ │ ├── unpin-symbolic.svg │ │ │ │ │ │ │ ├── value-decrease-symbolic.svg │ │ │ │ │ │ │ ├── value-increase-symbolic.svg │ │ │ │ │ │ │ ├── view-app-grid-symbolic.svg │ │ │ │ │ │ │ ├── view-bottom-pane-symbolic.svg │ │ │ │ │ │ │ ├── view-column-symbolic.svg │ │ │ │ │ │ │ ├── view-compact-symbolic.svg │ │ │ │ │ │ │ ├── view-conceal-symbolic.svg │ │ │ │ │ │ │ ├── view-continuous-symbolic.svg │ │ │ │ │ │ │ ├── view-coverflow-symbolic.svg │ │ │ │ │ │ │ ├── view-dual-symbolic.svg │ │ │ │ │ │ │ ├── view-filter-rtl-symbolic.svg │ │ │ │ │ │ │ ├── view-filter-symbolic-rtl.svg │ │ │ │ │ │ │ ├── view-filter-symbolic.svg │ │ │ │ │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ │ │ │ │ ├── view-grid-symbolic.svg │ │ │ │ │ │ │ ├── view-left-pane-symbolic-rtl.svg │ │ │ │ │ │ │ ├── view-left-pane-symbolic.svg │ │ │ │ │ │ │ ├── view-list-bullet-symbolic.svg │ │ │ │ │ │ │ ├── view-list-compact-symbolic.svg │ │ │ │ │ │ │ ├── view-list-images-symbolic.svg │ │ │ │ │ │ │ ├── view-list-ordered-symbolic.svg │ │ │ │ │ │ │ ├── view-list-symbolic.svg │ │ │ │ │ │ │ ├── view-list-video-symbolic.svg │ │ │ │ │ │ │ ├── view-mirror-symbolic.svg │ │ │ │ │ │ │ ├── view-more-horizontal-symbolic.svg │ │ │ │ │ │ │ ├── view-more-symbolic.svg │ │ │ │ │ │ │ ├── view-paged-symbolic.svg │ │ │ │ │ │ │ ├── view-pin-symbolic.svg │ │ │ │ │ │ │ ├── view-presentation-symbolic.svg │ │ │ │ │ │ │ ├── view-private-symbolic.svg │ │ │ │ │ │ │ ├── view-refresh-symbolic.svg │ │ │ │ │ │ │ ├── view-restore-symbolic.svg │ │ │ │ │ │ │ ├── view-reveal-symbolic.svg │ │ │ │ │ │ │ ├── view-right-pane-symbolic-rtl.svg │ │ │ │ │ │ │ ├── view-right-pane-symbolic.svg │ │ │ │ │ │ │ ├── view-sidebar-end-symbolic.svg │ │ │ │ │ │ │ ├── view-sidebar-start-symbolic.svg │ │ │ │ │ │ │ ├── view-sidebar-symbolic.svg │ │ │ │ │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ │ │ │ │ ├── view-sort-descending-symbolic.svg │ │ │ │ │ │ │ ├── view-top-pane-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-fit-height-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-fit-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-fit-width-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-in-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-original-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-out-symbolic.svg │ │ │ │ │ │ │ ├── violence-none-symbolic.svg │ │ │ │ │ │ │ ├── violence-symbolic.svg │ │ │ │ │ │ │ ├── window-close-symbolic.svg │ │ │ │ │ │ │ ├── window-keep-above-symbolic.svg │ │ │ │ │ │ │ ├── window-keep-below-symbolic.svg │ │ │ │ │ │ │ ├── window-maximize-symbolic-rtl.svg │ │ │ │ │ │ │ ├── window-maximize-symbolic.svg │ │ │ │ │ │ │ ├── window-minimize-symbolic.svg │ │ │ │ │ │ │ ├── window-new-symbolic.svg │ │ │ │ │ │ │ ├── window-pin-symbolic.svg │ │ │ │ │ │ │ ├── window-pop-out-symbolic.svg │ │ │ │ │ │ │ ├── window-restore-symbolic-rtl.svg │ │ │ │ │ │ │ ├── window-restore-symbolic.svg │ │ │ │ │ │ │ ├── window-shade-symbolic.svg │ │ │ │ │ │ │ ├── window-symbolic.svg │ │ │ │ │ │ │ ├── window-unpin-symbolic.svg │ │ │ │ │ │ │ ├── window-unshade-symbolic.svg │ │ │ │ │ │ │ ├── xapp-annotations-squiggly-symbolic.svg │ │ │ │ │ │ │ ├── xapp-annotations-text-symbolic.svg │ │ │ │ │ │ │ ├── xapp-diaporama-symbolic.svg │ │ │ │ │ │ │ ├── xapp-favorite-symbolic.svg │ │ │ │ │ │ │ ├── xapp-format-text-highlight-symbolic.svg │ │ │ │ │ │ │ ├── xapp-go-history-next-symbolic-rtl.svg │ │ │ │ │ │ │ ├── xapp-go-history-next-symbolic.svg │ │ │ │ │ │ │ ├── xapp-go-history-previous-symbolic-rtl.svg │ │ │ │ │ │ │ ├── xapp-go-history-previous-symbolic.svg │ │ │ │ │ │ │ ├── xapp-pin-symbolic.svg │ │ │ │ │ │ │ ├── xapp-search-entire-word-symbolic.svg │ │ │ │ │ │ │ ├── xapp-search-wrap-symbolic.svg │ │ │ │ │ │ │ ├── xapp-text-case-symbolic.svg │ │ │ │ │ │ │ ├── xapp-unfavorite-symbolic.svg │ │ │ │ │ │ │ ├── xapp-unpin-symbolic.svg │ │ │ │ │ │ │ ├── xapp-use-regex-symbolic.svg │ │ │ │ │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ │ │ │ │ ├── zoom-in-symbolic.svg │ │ │ │ │ │ │ ├── zoom-original-symbolic.svg │ │ │ │ │ │ │ └── zoom-out-symbolic.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-documents-symbolic.svg │ │ │ │ │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ │ │ │ │ ├── emblem-music-symbolic.svg │ │ │ │ │ │ │ ├── emblem-ok-symbolic.svg │ │ │ │ │ │ │ ├── emblem-photos-symbolic.svg │ │ │ │ │ │ │ └── emblem-system-symbolic.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ │ │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ │ │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ │ │ │ │ ├── audio-volume-muted-blocking-symbolic.svg │ │ │ │ │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ │ │ │ │ ├── audio-volume-overamplified-symbolic.svg │ │ │ │ │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-caution-symbolic.svg │ │ │ │ │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-empty-symbolic.svg │ │ │ │ │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ │ │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-full-symbolic.svg │ │ │ │ │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-good-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-0-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-0-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-10-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-10-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-100-charged-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-100-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-100-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-20-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-20-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-30-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-30-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-40-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-40-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-50-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-50-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-60-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-60-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-70-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-70-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-80-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-80-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-90-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-90-symbolic.svg │ │ │ │ │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-low-symbolic.svg │ │ │ │ │ │ │ ├── battery-medium-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-medium-symbolic.svg │ │ │ │ │ │ │ ├── blueberry-tray-active-symbolic.svg │ │ │ │ │ │ │ ├── blueberry-tray-disabled-symbolic.svg │ │ │ │ │ │ │ ├── blueberry-tray-symbolic.svg │ │ │ │ │ │ │ ├── blueman-active-symbolic.svg │ │ │ │ │ │ │ ├── blueman-disabled-symbolic.svg │ │ │ │ │ │ │ ├── blueman-symbolic.svg │ │ │ │ │ │ │ ├── blueman-tray-symbolic.svg │ │ │ │ │ │ │ ├── bluetooth-active-symbolic.svg │ │ │ │ │ │ │ ├── bluetooth-disabled-symbolic.svg │ │ │ │ │ │ │ ├── bluetooth-disconnected-symbolic.svg │ │ │ │ │ │ │ ├── bluetooth-hardware-disabled-symbolic.svg │ │ │ │ │ │ │ ├── bluetooth-paired-symbolic.svg │ │ │ │ │ │ │ ├── empty-notif-symbolic.svg │ │ │ │ │ │ │ ├── ephy-audio-muted-symbolic.svg │ │ │ │ │ │ │ ├── ephy-audio-playing-symbolic.svg │ │ │ │ │ │ │ ├── mpi-symbolic.svg │ │ │ │ │ │ │ ├── network-unavailable-symbolic.svg │ │ │ │ │ │ │ ├── network-wired-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-excellent-secure-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-good-secure-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-good-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-none-secure-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-none-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-ok-secure-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-weak-secure-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ │ │ │ │ │ ├── normal-notif-symbolic.svg │ │ │ │ │ │ │ ├── notification-alert-symbolic.svg │ │ │ │ │ │ │ ├── notification-disabled-new-symbolic.svg │ │ │ │ │ │ │ ├── notification-new-symbolic.svg │ │ │ │ │ │ │ ├── notification-symbolic.svg │ │ │ │ │ │ │ ├── notifications-applet-symbolic.svg │ │ │ │ │ │ │ ├── notifications-new-symbolic.svg │ │ │ │ │ │ │ ├── notifications-symbolic.svg │ │ │ │ │ │ │ ├── redshift-status-off-symbolic.svg │ │ │ │ │ │ │ ├── redshift-status-on-symbolic.svg │ │ │ │ │ │ │ └── start-here-symbolic.svg │ │ │ │ │ └── symbolic@2x │ │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── action-unavailable-symbolic.svg │ │ │ │ │ │ ├── add-files-to-archive-symbolic.svg │ │ │ │ │ │ ├── address-book-new-symbolic.svg │ │ │ │ │ │ ├── align-horizontal-center-symbolic.svg │ │ │ │ │ │ ├── align-horizontal-left-symbolic.svg │ │ │ │ │ │ ├── align-horizontal-left-to-anchor-symbolic.svg │ │ │ │ │ │ ├── align-horizontal-right-symbolic.svg │ │ │ │ │ │ ├── align-horizontal-right-to-anchor-symbolic.svg │ │ │ │ │ │ ├── align-vertical-bottom-symbolic.svg │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor-symbolic.svg │ │ │ │ │ │ ├── align-vertical-center-symbolic.svg │ │ │ │ │ │ ├── align-vertical-top-symbolic.svg │ │ │ │ │ │ ├── align-vertical-top-to-anchor-symbolic.svg │ │ │ │ │ │ ├── app-installed-symbolic.svg │ │ │ │ │ │ ├── app-remove-symbolic.svg │ │ │ │ │ │ ├── application-add-symbolic.svg │ │ │ │ │ │ ├── application-exit-symbolic.svg │ │ │ │ │ │ ├── application-menu-symbolic.svg │ │ │ │ │ │ ├── appointment-new-symbolic.svg │ │ │ │ │ │ ├── appointment-symbolic.svg │ │ │ │ │ │ ├── archive-symbolic.svg │ │ │ │ │ │ ├── bookmark-add-symbolic.svg │ │ │ │ │ │ ├── bookmark-new-symbolic.svg │ │ │ │ │ │ ├── brisk_system-log-out-symbolic.svg │ │ │ │ │ │ ├── browser-download-symbolic.svg │ │ │ │ │ │ ├── ca.desrt.dconf-editor.big-rows-symbolic.svg │ │ │ │ │ │ ├── ca.desrt.dconf-editor.small-rows-symbolic.svg │ │ │ │ │ │ ├── calendar-go-today-symbolic.svg │ │ │ │ │ │ ├── call-end-symbolic.svg │ │ │ │ │ │ ├── call-start-symbolic.svg │ │ │ │ │ │ ├── call-stop-symbolic.svg │ │ │ │ │ │ ├── call-voicemail-symbolic.svg │ │ │ │ │ │ ├── camera-switch-symbolic.svg │ │ │ │ │ │ ├── caps-lock-off-symbolic.svg │ │ │ │ │ │ ├── caps-lock-symbolic.svg │ │ │ │ │ │ ├── carousel-arrow-previous-symbolic.svg │ │ │ │ │ │ ├── category-search-symbolic.svg │ │ │ │ │ │ ├── change-date-symbolic.svg │ │ │ │ │ │ ├── chat-message-new-symbolic.svg │ │ │ │ │ │ ├── chat-none-symbolic.svg │ │ │ │ │ │ ├── chat-symbolic.svg │ │ │ │ │ │ ├── cigarette-none-symbolic.svg │ │ │ │ │ │ ├── cigarette-symbolic.svg │ │ │ │ │ │ ├── cinnamon-caps-lock-off-symbolic.svg │ │ │ │ │ │ ├── cinnamon-caps-lock-symbolic.svg │ │ │ │ │ │ ├── cinnamon-num-lock-off-symbolic.svg │ │ │ │ │ │ ├── cinnamon-num-lock-symbolic.svg │ │ │ │ │ │ ├── close-symbolic.svg │ │ │ │ │ │ ├── collapse-all-symbolic.svg │ │ │ │ │ │ ├── color-profile-symbolic.svg │ │ │ │ │ │ ├── color-select-symbolic.svg │ │ │ │ │ │ ├── comment-symbolic.svg │ │ │ │ │ │ ├── contact-new-symbolic.svg │ │ │ │ │ │ ├── content-loading-symbolic.svg │ │ │ │ │ │ ├── desktop-symbolic.svg │ │ │ │ │ │ ├── detach-symbolic.svg │ │ │ │ │ │ ├── dino-double-tick-symbolic.svg │ │ │ │ │ │ ├── dino-tick-symbolic.svg │ │ │ │ │ │ ├── display-symbolic.svg │ │ │ │ │ │ ├── document-edit-symbolic.svg │ │ │ │ │ │ ├── document-export-symbolic-rtl.svg │ │ │ │ │ │ ├── document-export-symbolic.svg │ │ │ │ │ │ ├── document-import-symbolic-rtl.svg │ │ │ │ │ │ ├── document-import-symbolic.svg │ │ │ │ │ │ ├── document-new-symbolic.svg │ │ │ │ │ │ ├── document-open-recent-symbolic.svg │ │ │ │ │ │ ├── document-open-symbolic.svg │ │ │ │ │ │ ├── document-page-setup-symbolic.svg │ │ │ │ │ │ ├── document-print-preview-symbolic.svg │ │ │ │ │ │ ├── document-print-symbolic.svg │ │ │ │ │ │ ├── document-properties-symbolic.svg │ │ │ │ │ │ ├── document-revert-rtl-symbolic.svg │ │ │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ │ │ ├── document-revert-symbolic.svg │ │ │ │ │ │ ├── document-save-as-symbolic.svg │ │ │ │ │ │ ├── document-save-symbolic.svg │ │ │ │ │ │ ├── document-send-symbolic.svg │ │ │ │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ │ │ │ ├── edit-clear-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-clear-symbolic-rtl.svg │ │ │ │ │ │ ├── edit-clear-symbolic.svg │ │ │ │ │ │ ├── edit-copy-symbolic.svg │ │ │ │ │ │ ├── edit-cut-symbolic.svg │ │ │ │ │ │ ├── edit-delete-symbolic.svg │ │ │ │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ │ │ │ ├── edit-find-symbolic.svg │ │ │ │ │ │ ├── edit-flag-symbolic.svg │ │ │ │ │ │ ├── edit-paste-symbolic.svg │ │ │ │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-redo-symbolic-rtl.svg │ │ │ │ │ │ ├── edit-redo-symbolic.svg │ │ │ │ │ │ ├── edit-select-all-symbolic.svg │ │ │ │ │ │ ├── edit-select-symbolic.svg │ │ │ │ │ │ ├── edit-symbolic.svg │ │ │ │ │ │ ├── edit-tag-symbolic.svg │ │ │ │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-undo-symbolic-rtl.svg │ │ │ │ │ │ ├── edit-undo-symbolic.svg │ │ │ │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ │ │ │ ├── ephy-bookmark-tag-symbolic.svg │ │ │ │ │ │ ├── ephy-bookmarks-symbolic.svg │ │ │ │ │ │ ├── ephy-reader-mode-symbolic.svg │ │ │ │ │ │ ├── error-correct-symbolic.svg │ │ │ │ │ │ ├── expand-all-symbolic.svg │ │ │ │ │ │ ├── explore2-symbolic.svg │ │ │ │ │ │ ├── export-symbolic.svg │ │ │ │ │ │ ├── extension-symbolic.svg │ │ │ │ │ │ ├── external-link-symbolic.svg │ │ │ │ │ │ ├── extract-archive-symbolic.svg │ │ │ │ │ │ ├── eye-not-looking-symbolic.svg │ │ │ │ │ │ ├── eye-open-negative-filled-symbolic.svg │ │ │ │ │ │ ├── favorite-new-symbolic.svg │ │ │ │ │ │ ├── fcitx-fullwidth-active-symbolic.svg │ │ │ │ │ │ ├── fcitx-fullwidth-inactive-symbolic.svg │ │ │ │ │ │ ├── fcitx-kbd-symbolic.svg │ │ │ │ │ │ ├── fcitx-punc-active-symbolic.svg │ │ │ │ │ │ ├── fcitx-punc-inactive-symbolic.svg │ │ │ │ │ │ ├── fcitx-vk-active-symbolic.svg │ │ │ │ │ │ ├── fcitx-vk-inactive-symbolic.svg │ │ │ │ │ │ ├── file-catalog-symbolic.svg │ │ │ │ │ │ ├── file-library-symbolic.svg │ │ │ │ │ │ ├── file-search-symbolic.svg │ │ │ │ │ │ ├── filter-symbolic.svg │ │ │ │ │ │ ├── find-location-symbolic.svg │ │ │ │ │ │ ├── flag-outline-thin-symbolic.svg │ │ │ │ │ │ ├── flag-symbolic.svg │ │ │ │ │ │ ├── focus-legacy-systray-symbolic.svg │ │ │ │ │ │ ├── focus-top-bar-symbolic.svg │ │ │ │ │ │ ├── focus-windows-symbolic.svg │ │ │ │ │ │ ├── folder-new-symbolic.svg │ │ │ │ │ │ ├── font-color-symbolic.svg │ │ │ │ │ │ ├── font-select-symbolic.svg │ │ │ │ │ │ ├── font-size-symbolic.svg │ │ │ │ │ │ ├── format-indent-less-rtl-symbolic.svg │ │ │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ │ │ ├── format-indent-less-symbolic.svg │ │ │ │ │ │ ├── format-indent-more-rtl-symbolic.svg │ │ │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ │ │ ├── format-indent-more-symbolic.svg │ │ │ │ │ │ ├── format-justify-center-symbolic.svg │ │ │ │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ │ │ │ ├── format-justify-left-symbolic.svg │ │ │ │ │ │ ├── format-justify-right-symbolic.svg │ │ │ │ │ │ ├── format-ordered-list-symbolic-rtl.svg │ │ │ │ │ │ ├── format-ordered-list-symbolic.svg │ │ │ │ │ │ ├── format-text-bold-es-symbolic.svg │ │ │ │ │ │ ├── format-text-bold-fr-symbolic.svg │ │ │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ │ │ ├── format-text-clear-formatting-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ │ │ ├── format-text-direction-symbolic.svg │ │ │ │ │ │ ├── format-text-italic-es-symbolic.svg │ │ │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ │ │ ├── format-text-larger-symbolic.svg │ │ │ │ │ │ ├── format-text-remove-formatting-symbolic.svg │ │ │ │ │ │ ├── format-text-remove-symbolic.svg │ │ │ │ │ │ ├── format-text-smaller-symbolic.svg │ │ │ │ │ │ ├── format-text-strikethrough-fr-symbolic.svg │ │ │ │ │ │ ├── format-text-strikethrough-symbolic.svg │ │ │ │ │ │ ├── format-text-underline-fr-symbolic.svg │ │ │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ │ │ ├── format-toolbar-toggle-symbolic.svg │ │ │ │ │ │ ├── format-unordered-list-symbolic-rtl.svg │ │ │ │ │ │ ├── format-unordered-list-symbolic.svg │ │ │ │ │ │ ├── forward-rtl-symbolic.svg │ │ │ │ │ │ ├── forward-symbolic.svg │ │ │ │ │ │ ├── globe-symbolic.svg │ │ │ │ │ │ ├── go-bottom-symbolic.svg │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ │ │ ├── go-first-symbolic.svg │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ │ │ │ ├── go-jump-symbolic-rtl.svg │ │ │ │ │ │ ├── go-jump-symbolic.svg │ │ │ │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ │ │ ├── go-last-symbolic.svg │ │ │ │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ ├── go-top-symbolic.svg │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ ├── graveyard-symbolic.svg │ │ │ │ │ │ ├── gtk-about-symbolic.svg │ │ │ │ │ │ ├── heart-filled-symbolic.svg │ │ │ │ │ │ ├── help-about-symbolic.svg │ │ │ │ │ │ ├── help-contents-symbolic.svg │ │ │ │ │ │ ├── help-info-symbolic.svg │ │ │ │ │ │ ├── histogram-symbolic.svg │ │ │ │ │ │ ├── image-crop-symbolic.svg │ │ │ │ │ │ ├── image-denoise-symbolic.svg │ │ │ │ │ │ ├── image-filter-symbolic.svg │ │ │ │ │ │ ├── image-flip-horizontal-symbolic.svg │ │ │ │ │ │ ├── image-flip-vertical-symbolic.svg │ │ │ │ │ │ ├── image-invert-symbolic.svg │ │ │ │ │ │ ├── image-navigator-symbolic.svg │ │ │ │ │ │ ├── image-red-eye-symbolic.svg │ │ │ │ │ │ ├── image-resize-symbolic.svg │ │ │ │ │ │ ├── image-rotate-left-symbolic.svg │ │ │ │ │ │ ├── image-rotate-right-symbolic.svg │ │ │ │ │ │ ├── image-rotate-symbolic.svg │ │ │ │ │ │ ├── image-sharpen-symbolic.svg │ │ │ │ │ │ ├── image-straighten-symbolic.svg │ │ │ │ │ │ ├── inbox-symbolic.svg │ │ │ │ │ │ ├── insert-emoticon-symbolic.svg │ │ │ │ │ │ ├── insert-image-symbolic.svg │ │ │ │ │ │ ├── insert-link-symbolic.svg │ │ │ │ │ │ ├── insert-object-symbolic.svg │ │ │ │ │ │ ├── insert-text-symbolic.svg │ │ │ │ │ │ ├── keyboard-caps-lock-filled-symbolic.svg │ │ │ │ │ │ ├── keyboard-enter-symbolic.svg │ │ │ │ │ │ ├── keyboard-hide-symbolic.svg │ │ │ │ │ │ ├── keyboard-layout-filled-symbolic.svg │ │ │ │ │ │ ├── keyboard-shift-filled-symbolic.svg │ │ │ │ │ │ ├── link-symbolic.svg │ │ │ │ │ │ ├── list-add-symbolic.svg │ │ │ │ │ │ ├── list-edit-symbolic.svg │ │ │ │ │ │ ├── list-remove-all-symbolic.svg │ │ │ │ │ │ ├── list-remove-symbolic.svg │ │ │ │ │ │ ├── location-symbolic.svg │ │ │ │ │ │ ├── mail-archive-symbolic.svg │ │ │ │ │ │ ├── mail-attachment-symbolic.svg │ │ │ │ │ │ ├── mail-drafts-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-drafts-symbolic.svg │ │ │ │ │ │ ├── mail-flag-symbolic.svg │ │ │ │ │ │ ├── mail-forward-rtl-symbolic.svg │ │ │ │ │ │ ├── mail-forward-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-forward-symbolic.svg │ │ │ │ │ │ ├── mail-inbox-symbolic.svg │ │ │ │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ │ │ │ ├── mail-mark-junk-symbolic.svg │ │ │ │ │ │ ├── mail-mark-notjunk-symbolic.svg │ │ │ │ │ │ ├── mail-mark-read-symbolic.svg │ │ │ │ │ │ ├── mail-mark-unread-symbolic.svg │ │ │ │ │ │ ├── mail-message-new-symbolic.svg │ │ │ │ │ │ ├── mail-move-symbolic.svg │ │ │ │ │ │ ├── mail-outbox-symbolic.svg │ │ │ │ │ │ ├── mail-reply-all-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-reply-all-symbolic.svg │ │ │ │ │ │ ├── mail-reply-rtl-symbolic.svg │ │ │ │ │ │ ├── mail-reply-sender-rtl-symbolic.svg │ │ │ │ │ │ ├── mail-reply-sender-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-reply-sender-symbolic.svg │ │ │ │ │ │ ├── mail-reply-symbolic.svg │ │ │ │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ │ │ │ ├── mail-send-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-send-symbolic.svg │ │ │ │ │ │ ├── mail-sent-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-sent-symbolic.svg │ │ │ │ │ │ ├── mail-spam-symbolic.svg │ │ │ │ │ │ ├── map-symbolic.svg │ │ │ │ │ │ ├── mark-location-symbolic.svg │ │ │ │ │ │ ├── marker-symbolic.svg │ │ │ │ │ │ ├── media-eject-symbolic.svg │ │ │ │ │ │ ├── media-eq-symbolic.svg │ │ │ │ │ │ ├── media-mount-symbolic.svg │ │ │ │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ │ │ │ ├── media-playback-play-pause-symbolic.svg │ │ │ │ │ │ ├── media-playback-start-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playback-start-symbolic.svg │ │ │ │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ │ │ │ ├── media-playlist-no-repeat-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-once-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-one-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ │ │ │ ├── media-record-symbolic.svg │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-skip-forward-symbolic.svg │ │ │ │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ │ │ │ ├── message-indicator-symbolic.svg │ │ │ │ │ │ ├── money-none-symbolic.svg │ │ │ │ │ │ ├── money-symbolic.svg │ │ │ │ │ │ ├── mount-archive-symbolic.svg │ │ │ │ │ │ ├── multimedia-equalizer-symbolic.svg │ │ │ │ │ │ ├── nemo-auto-arrange-symbolic.svg │ │ │ │ │ │ ├── nemo-desktop-scale-symbolic.svg │ │ │ │ │ │ ├── nemo-horizontal-layout-symbolic.svg │ │ │ │ │ │ ├── nemo-horizontal-layout-wide-symbolic.svg │ │ │ │ │ │ ├── nemo-recursive-search-symbolic.svg │ │ │ │ │ │ ├── nemo-vertical-layout-symbolic.svg │ │ │ │ │ │ ├── nemo-vertical-layout-wide-symbolic.svg │ │ │ │ │ │ ├── new-star-symbolic.svg │ │ │ │ │ │ ├── non-starred-symbolic.svg │ │ │ │ │ │ ├── notification-alert-symbolic.svg │ │ │ │ │ │ ├── nudity-none-symbolic.svg │ │ │ │ │ │ ├── nudity-symbolic.svg │ │ │ │ │ │ ├── num-lock-off-symbolic.svg │ │ │ │ │ │ ├── num-lock-symbolic.svg │ │ │ │ │ │ ├── object-flip-horizontal-symbolic.svg │ │ │ │ │ │ ├── object-flip-vertical-symbolic.svg │ │ │ │ │ │ ├── object-group-symbolic.svg │ │ │ │ │ │ ├── object-inverse-symbolic.svg │ │ │ │ │ │ ├── object-merge-symbolic.svg │ │ │ │ │ │ ├── object-move-symbolic.svg │ │ │ │ │ │ ├── object-rotate-left-symbolic.svg │ │ │ │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ │ │ │ ├── object-select-symbolic.svg │ │ │ │ │ │ ├── object-straighten-symbolic.svg │ │ │ │ │ │ ├── object-ungroup-symbolic.svg │ │ │ │ │ │ ├── open-menu-symbolic.svg │ │ │ │ │ │ ├── outbox-symbolic.svg │ │ │ │ │ │ ├── padlock-open-symbolic.svg │ │ │ │ │ │ ├── palette-symbolic.svg │ │ │ │ │ │ ├── pan-down-symbolic.svg │ │ │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ │ │ ├── pan-end-symbolic.svg │ │ │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ │ │ ├── pan-start-symbolic.svg │ │ │ │ │ │ ├── pan-up-symbolic.svg │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.svg │ │ │ │ │ │ ├── pane-hide-symbolic.svg │ │ │ │ │ │ ├── pane-show-symbolic-rtl.svg │ │ │ │ │ │ ├── pane-show-symbolic.svg │ │ │ │ │ │ ├── path-break-apart-symbolic.svg │ │ │ │ │ │ ├── path-combine-symbolic.svg │ │ │ │ │ │ ├── path-difference-symbolic.svg │ │ │ │ │ │ ├── path-division-symbolic.svg │ │ │ │ │ │ ├── path-exclusion-symbolic.svg │ │ │ │ │ │ ├── path-intersection-symbolic.svg │ │ │ │ │ │ ├── path-union-symbolic.svg │ │ │ │ │ │ ├── phonelink-ring-symbolic.svg │ │ │ │ │ │ ├── pin-symbolic.svg │ │ │ │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ │ │ │ ├── pointer-drag-symbolic.svg │ │ │ │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ │ │ │ ├── pointer-secondary-click-symbolic.svg │ │ │ │ │ │ ├── process-stop-symbolic.svg │ │ │ │ │ │ ├── pub-symbolic.svg │ │ │ │ │ │ ├── qrscanner-symbolic.svg │ │ │ │ │ │ ├── reply-all-rtl-symbolic.svg │ │ │ │ │ │ ├── reply-all-symbolic-rtl.svg │ │ │ │ │ │ ├── reply-all-symbolic.svg │ │ │ │ │ │ ├── reply-rtl-symbolic.svg │ │ │ │ │ │ ├── reply-symbolic.svg │ │ │ │ │ │ ├── safety-symbolic.svg │ │ │ │ │ │ ├── scan-type-adf-symbolic.svg │ │ │ │ │ │ ├── scan-type-batch-symbolic.svg │ │ │ │ │ │ ├── screen-rotate-auto-off-symbolic.svg │ │ │ │ │ │ ├── screen-rotate-auto-on-symbolic.svg │ │ │ │ │ │ ├── screensaver-switch-users-symbolic.svg │ │ │ │ │ │ ├── screensaver-unlock-symbolic.svg │ │ │ │ │ │ ├── search-symbolic.svg │ │ │ │ │ │ ├── selection-bottom-symbolic.svg │ │ │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ │ │ ├── selection-end-symbolic.svg │ │ │ │ │ │ ├── selection-lower-symbolic.svg │ │ │ │ │ │ ├── selection-raise-symbolic.svg │ │ │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ │ │ ├── selection-start-symbolic.svg │ │ │ │ │ │ ├── selection-symbolic.svg │ │ │ │ │ │ ├── selection-top-symbolic.svg │ │ │ │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ │ │ │ ├── semi-starred-symbolic.svg │ │ │ │ │ │ ├── send-to-symbolic.svg │ │ │ │ │ │ ├── sidebar-hide-symbolic.svg │ │ │ │ │ │ ├── sidebar-places-symbolic.svg │ │ │ │ │ │ ├── sidebar-show-symbolic.svg │ │ │ │ │ │ ├── sidebar-tree-symbolic.svg │ │ │ │ │ │ ├── sign-language-symbolic.svg │ │ │ │ │ │ ├── sms-symbolic.svg │ │ │ │ │ │ ├── spam-symbolic.svg │ │ │ │ │ │ ├── special-effects-symbolic.svg │ │ │ │ │ │ ├── star-new-symbolic.svg │ │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ │ ├── stopwatch-symbolic.svg │ │ │ │ │ │ ├── strong-language-none-symbolic.svg │ │ │ │ │ │ ├── strong-language-symbolic.svg │ │ │ │ │ │ ├── system-hibernate-symbolic.svg │ │ │ │ │ │ ├── system-lock-screen-symbolic.svg │ │ │ │ │ │ ├── system-log-out-symbolic.svg │ │ │ │ │ │ ├── system-reboot-symbolic.svg │ │ │ │ │ │ ├── system-restart-symbolic.svg │ │ │ │ │ │ ├── system-run-symbolic.svg │ │ │ │ │ │ ├── system-search-symbolic.svg │ │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ │ ├── system-suspend-symbolic.svg │ │ │ │ │ │ ├── system-switch-user-symbolic.svg │ │ │ │ │ │ ├── tab-new-symbolic.svg │ │ │ │ │ │ ├── tag-new-symbolic.svg │ │ │ │ │ │ ├── tag-symbolic-rtl.svg │ │ │ │ │ │ ├── tag-symbolic.svg │ │ │ │ │ │ ├── test-pass-symbolic.svg │ │ │ │ │ │ ├── timer-symbolic.svg │ │ │ │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ │ │ │ ├── tools-symbolic.svg │ │ │ │ │ │ ├── tools-timer-symbolic.svg │ │ │ │ │ │ ├── twitter-dm-symbolic.svg │ │ │ │ │ │ ├── twitter-home-symbolic.svg │ │ │ │ │ │ ├── twitter-mentions-symbolic.svg │ │ │ │ │ │ ├── twitter-profile-symbolic.svg │ │ │ │ │ │ ├── unpin-symbolic.svg │ │ │ │ │ │ ├── value-decrease-symbolic.svg │ │ │ │ │ │ ├── value-increase-symbolic.svg │ │ │ │ │ │ ├── view-app-grid-symbolic.svg │ │ │ │ │ │ ├── view-bottom-pane-symbolic.svg │ │ │ │ │ │ ├── view-column-symbolic.svg │ │ │ │ │ │ ├── view-compact-symbolic.svg │ │ │ │ │ │ ├── view-conceal-symbolic.svg │ │ │ │ │ │ ├── view-continuous-symbolic.svg │ │ │ │ │ │ ├── view-coverflow-symbolic.svg │ │ │ │ │ │ ├── view-dual-symbolic.svg │ │ │ │ │ │ ├── view-filter-rtl-symbolic.svg │ │ │ │ │ │ ├── view-filter-symbolic-rtl.svg │ │ │ │ │ │ ├── view-filter-symbolic.svg │ │ │ │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ │ │ │ ├── view-grid-symbolic.svg │ │ │ │ │ │ ├── view-left-pane-symbolic-rtl.svg │ │ │ │ │ │ ├── view-left-pane-symbolic.svg │ │ │ │ │ │ ├── view-list-bullet-symbolic.svg │ │ │ │ │ │ ├── view-list-compact-symbolic.svg │ │ │ │ │ │ ├── view-list-images-symbolic.svg │ │ │ │ │ │ ├── view-list-ordered-symbolic.svg │ │ │ │ │ │ ├── view-list-symbolic.svg │ │ │ │ │ │ ├── view-list-video-symbolic.svg │ │ │ │ │ │ ├── view-mirror-symbolic.svg │ │ │ │ │ │ ├── view-more-horizontal-symbolic.svg │ │ │ │ │ │ ├── view-more-symbolic.svg │ │ │ │ │ │ ├── view-paged-symbolic.svg │ │ │ │ │ │ ├── view-pin-symbolic.svg │ │ │ │ │ │ ├── view-presentation-symbolic.svg │ │ │ │ │ │ ├── view-private-symbolic.svg │ │ │ │ │ │ ├── view-refresh-symbolic.svg │ │ │ │ │ │ ├── view-restore-symbolic.svg │ │ │ │ │ │ ├── view-reveal-symbolic.svg │ │ │ │ │ │ ├── view-right-pane-symbolic-rtl.svg │ │ │ │ │ │ ├── view-right-pane-symbolic.svg │ │ │ │ │ │ ├── view-sidebar-end-symbolic.svg │ │ │ │ │ │ ├── view-sidebar-start-symbolic.svg │ │ │ │ │ │ ├── view-sidebar-symbolic.svg │ │ │ │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ │ │ │ ├── view-sort-descending-symbolic.svg │ │ │ │ │ │ ├── view-top-pane-symbolic.svg │ │ │ │ │ │ ├── view-zoom-fit-height-symbolic.svg │ │ │ │ │ │ ├── view-zoom-fit-symbolic.svg │ │ │ │ │ │ ├── view-zoom-fit-width-symbolic.svg │ │ │ │ │ │ ├── view-zoom-in-symbolic.svg │ │ │ │ │ │ ├── view-zoom-original-symbolic.svg │ │ │ │ │ │ ├── view-zoom-out-symbolic.svg │ │ │ │ │ │ ├── violence-none-symbolic.svg │ │ │ │ │ │ ├── violence-symbolic.svg │ │ │ │ │ │ ├── window-close-symbolic.svg │ │ │ │ │ │ ├── window-keep-above-symbolic.svg │ │ │ │ │ │ ├── window-keep-below-symbolic.svg │ │ │ │ │ │ ├── window-maximize-symbolic-rtl.svg │ │ │ │ │ │ ├── window-maximize-symbolic.svg │ │ │ │ │ │ ├── window-minimize-symbolic.svg │ │ │ │ │ │ ├── window-new-symbolic.svg │ │ │ │ │ │ ├── window-pin-symbolic.svg │ │ │ │ │ │ ├── window-pop-out-symbolic.svg │ │ │ │ │ │ ├── window-restore-symbolic-rtl.svg │ │ │ │ │ │ ├── window-restore-symbolic.svg │ │ │ │ │ │ ├── window-shade-symbolic.svg │ │ │ │ │ │ ├── window-symbolic.svg │ │ │ │ │ │ ├── window-unpin-symbolic.svg │ │ │ │ │ │ ├── window-unshade-symbolic.svg │ │ │ │ │ │ ├── xapp-annotations-squiggly-symbolic.svg │ │ │ │ │ │ ├── xapp-annotations-text-symbolic.svg │ │ │ │ │ │ ├── xapp-diaporama-symbolic.svg │ │ │ │ │ │ ├── xapp-favorite-symbolic.svg │ │ │ │ │ │ ├── xapp-format-text-highlight-symbolic.svg │ │ │ │ │ │ ├── xapp-go-history-next-symbolic-rtl.svg │ │ │ │ │ │ ├── xapp-go-history-next-symbolic.svg │ │ │ │ │ │ ├── xapp-go-history-previous-symbolic-rtl.svg │ │ │ │ │ │ ├── xapp-go-history-previous-symbolic.svg │ │ │ │ │ │ ├── xapp-pin-symbolic.svg │ │ │ │ │ │ ├── xapp-search-entire-word-symbolic.svg │ │ │ │ │ │ ├── xapp-search-wrap-symbolic.svg │ │ │ │ │ │ ├── xapp-text-case-symbolic.svg │ │ │ │ │ │ ├── xapp-unfavorite-symbolic.svg │ │ │ │ │ │ ├── xapp-unpin-symbolic.svg │ │ │ │ │ │ ├── xapp-use-regex-symbolic.svg │ │ │ │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ │ │ │ ├── zoom-in-symbolic.svg │ │ │ │ │ │ ├── zoom-original-symbolic.svg │ │ │ │ │ │ └── zoom-out-symbolic.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── emblem-documents-symbolic.svg │ │ │ │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ │ │ │ ├── emblem-music-symbolic.svg │ │ │ │ │ │ ├── emblem-ok-symbolic.svg │ │ │ │ │ │ ├── emblem-photos-symbolic.svg │ │ │ │ │ │ └── emblem-system-symbolic.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ │ │ │ ├── audio-volume-muted-blocking-symbolic.svg │ │ │ │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ │ │ │ ├── audio-volume-overamplified-symbolic.svg │ │ │ │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ │ │ │ ├── battery-caution-symbolic.svg │ │ │ │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ │ │ │ ├── battery-empty-symbolic.svg │ │ │ │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ │ │ │ ├── battery-full-symbolic.svg │ │ │ │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ │ │ │ ├── battery-good-symbolic.svg │ │ │ │ │ │ ├── battery-level-0-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-0-symbolic.svg │ │ │ │ │ │ ├── battery-level-10-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-10-symbolic.svg │ │ │ │ │ │ ├── battery-level-100-charged-symbolic.svg │ │ │ │ │ │ ├── battery-level-100-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-100-symbolic.svg │ │ │ │ │ │ ├── battery-level-20-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-20-symbolic.svg │ │ │ │ │ │ ├── battery-level-30-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-30-symbolic.svg │ │ │ │ │ │ ├── battery-level-40-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-40-symbolic.svg │ │ │ │ │ │ ├── battery-level-50-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-50-symbolic.svg │ │ │ │ │ │ ├── battery-level-60-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-60-symbolic.svg │ │ │ │ │ │ ├── battery-level-70-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-70-symbolic.svg │ │ │ │ │ │ ├── battery-level-80-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-80-symbolic.svg │ │ │ │ │ │ ├── battery-level-90-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-90-symbolic.svg │ │ │ │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ │ │ │ ├── battery-low-symbolic.svg │ │ │ │ │ │ ├── battery-medium-charging-symbolic.svg │ │ │ │ │ │ ├── battery-medium-symbolic.svg │ │ │ │ │ │ ├── blueberry-tray-active-symbolic.svg │ │ │ │ │ │ ├── blueberry-tray-disabled-symbolic.svg │ │ │ │ │ │ ├── blueberry-tray-symbolic.svg │ │ │ │ │ │ ├── blueman-active-symbolic.svg │ │ │ │ │ │ ├── blueman-disabled-symbolic.svg │ │ │ │ │ │ ├── blueman-symbolic.svg │ │ │ │ │ │ ├── blueman-tray-symbolic.svg │ │ │ │ │ │ ├── bluetooth-active-symbolic.svg │ │ │ │ │ │ ├── bluetooth-disabled-symbolic.svg │ │ │ │ │ │ ├── bluetooth-disconnected-symbolic.svg │ │ │ │ │ │ ├── bluetooth-hardware-disabled-symbolic.svg │ │ │ │ │ │ ├── bluetooth-paired-symbolic.svg │ │ │ │ │ │ ├── empty-notif-symbolic.svg │ │ │ │ │ │ ├── ephy-audio-muted-symbolic.svg │ │ │ │ │ │ ├── ephy-audio-playing-symbolic.svg │ │ │ │ │ │ ├── mpi-symbolic.svg │ │ │ │ │ │ ├── network-unavailable-symbolic.svg │ │ │ │ │ │ ├── network-wired-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-excellent-secure-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-good-secure-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-good-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-none-secure-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-none-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-ok-secure-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-weak-secure-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ │ │ │ │ ├── normal-notif-symbolic.svg │ │ │ │ │ │ ├── notification-alert-symbolic.svg │ │ │ │ │ │ ├── notification-disabled-new-symbolic.svg │ │ │ │ │ │ ├── notification-new-symbolic.svg │ │ │ │ │ │ ├── notification-symbolic.svg │ │ │ │ │ │ ├── notifications-applet-symbolic.svg │ │ │ │ │ │ ├── notifications-new-symbolic.svg │ │ │ │ │ │ ├── notifications-symbolic.svg │ │ │ │ │ │ ├── redshift-status-off-symbolic.svg │ │ │ │ │ │ ├── redshift-status-on-symbolic.svg │ │ │ │ │ │ └── start-here-symbolic.svg │ │ │ │ ├── Eleven-Light │ │ │ │ │ ├── 8 │ │ │ │ │ │ └── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ └── vcs-added.svg │ │ │ │ │ ├── 16 │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── action-unavailable.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add-subtitle.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcol.svg │ │ │ │ │ │ │ ├── adjustrow.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-on-canvas.svg │ │ │ │ │ │ │ ├── align-sel-as-group.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── attach-path.svg │ │ │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── automated-tasks.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backup.svg │ │ │ │ │ │ │ ├── bad-marker.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bend-path.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── bool-op.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── bounding-box.svg │ │ │ │ │ │ │ ├── boundingbox_bottom.svg │ │ │ │ │ │ │ ├── boundingbox_bottom_left.svg │ │ │ │ │ │ │ ├── boundingbox_bottom_right.svg │ │ │ │ │ │ │ ├── boundingbox_center.svg │ │ │ │ │ │ │ ├── boundingbox_left.svg │ │ │ │ │ │ │ ├── boundingbox_right.svg │ │ │ │ │ │ │ ├── boundingbox_top.svg │ │ │ │ │ │ │ ├── boundingbox_top_left.svg │ │ │ │ │ │ │ ├── boundingbox_top_right.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── bspline.svg │ │ │ │ │ │ │ ├── bug.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── cab_view.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── clone-original.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_copyfullnamestoclip.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_packfiles.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-mode-black-white.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-negative.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-positive.svg │ │ │ │ │ │ │ ├── color-mode-invert-image.svg │ │ │ │ │ │ │ ├── color-mode-invert-text.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── connector-avoid.svg │ │ │ │ │ │ │ ├── connector-ignore.svg │ │ │ │ │ │ │ ├── connector-orthogonal.svg │ │ │ │ │ │ │ ├── construct-grid.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── copy-rotate.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── curvestitching.svg │ │ │ │ │ │ │ ├── cvc-configure.svg │ │ │ │ │ │ │ ├── cvc-connect.svg │ │ │ │ │ │ │ ├── cvc-disconnect.svg │ │ │ │ │ │ │ ├── cvc-info.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── dashed-stroke.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── delete_table.svg │ │ │ │ │ │ │ ├── deletecell.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-fill-and-stroke.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-geometry.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-layers.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-objects.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-path-effects.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-rows-and-columns.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-templates.svg │ │ │ │ │ │ │ ├── dialog-text-and-font.svg │ │ │ │ │ │ │ ├── dialog-tile-clones.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── dissociatecell.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-compareleft.svg │ │ │ │ │ │ │ ├── document-compareright.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-duplicate.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-equal.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-metadata.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-scan.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-single.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── document-unequal.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse-arc.svg │ │ │ │ │ │ │ ├── draw-ellipse-chord.svg │ │ │ │ │ │ │ ├── draw-ellipse-segment.svg │ │ │ │ │ │ │ ├── draw-ellipse-whole.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser-delete-objects.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-geometry-angle-bisector.svg │ │ │ │ │ │ │ ├── draw-geometry-circle-from-radius.svg │ │ │ │ │ │ │ ├── draw-geometry-circle-from-three-points.svg │ │ │ │ │ │ │ ├── draw-geometry-inactive.svg │ │ │ │ │ │ │ ├── draw-geometry-line-parallel.svg │ │ │ │ │ │ │ ├── draw-geometry-line-perpendicular.svg │ │ │ │ │ │ │ ├── draw-geometry-line-segment.svg │ │ │ │ │ │ │ ├── draw-geometry-mirror.svg │ │ │ │ │ │ │ ├── draw-geometry-set-bounding-box.svg │ │ │ │ │ │ │ ├── draw-geometry-show-measuring-info.svg │ │ │ │ │ │ │ ├── draw-geometry.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star-outline.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-trace-background.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-use-pressure.svg │ │ │ │ │ │ │ ├── draw-use-tilt.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-link-lpe.svg │ │ │ │ │ │ │ ├── edit-clone-link.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-duplicate.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-move.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-height-separately.svg │ │ │ │ │ │ │ ├── edit-paste-height.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste-size-separately.svg │ │ │ │ │ │ │ ├── edit-paste-size.svg │ │ │ │ │ │ │ ├── edit-paste-style.svg │ │ │ │ │ │ │ ├── edit-paste-width-separately.svg │ │ │ │ │ │ │ ├── edit-paste-width.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all-layers.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ │ ├── edit-select-same-fill-and-stroke.svg │ │ │ │ │ │ │ ├── edit-select-same-fill.svg │ │ │ │ │ │ │ ├── edit-select-same-object-type.svg │ │ │ │ │ │ │ ├── edit-select-same-stroke-color.svg │ │ │ │ │ │ │ ├── edit-select-same-stroke-style.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-5pts.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embrodery-stitch.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── empty-icon.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── envelope.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── fcitx-anthy.svg │ │ │ │ │ │ │ ├── fcitx-hangul.svg │ │ │ │ │ │ │ ├── fcitx-kbd.svg │ │ │ │ │ │ │ ├── fcitx-vk-active.svg │ │ │ │ │ │ │ ├── fcitx-vk-inactive.svg │ │ │ │ │ │ │ ├── feTile-icon.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-between-many.svg │ │ │ │ │ │ │ ├── fill-between-strokes.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── fill-rule-even-odd.svg │ │ │ │ │ │ │ ├── fill-rule-nonzero.svg │ │ │ │ │ │ │ ├── fillet-chamfer.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── fitmanual.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flatten.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font-face.svg │ │ │ │ │ │ │ ├── font-size-down.svg │ │ │ │ │ │ │ ├── font-size-up.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── foreign_green.svg │ │ │ │ │ │ │ ├── foreign_red.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── gears.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-remote.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pivottable.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-axonometric.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag-new.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-dismiss.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hamburger-menu.svg │ │ │ │ │ │ │ ├── hatches.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate-ars.svg │ │ │ │ │ │ │ ├── help-donate-aud.svg │ │ │ │ │ │ │ ├── help-donate-brl.svg │ │ │ │ │ │ │ ├── help-donate-cad.svg │ │ │ │ │ │ │ ├── help-donate-chf.svg │ │ │ │ │ │ │ ├── help-donate-cny.svg │ │ │ │ │ │ │ ├── help-donate-eur.svg │ │ │ │ │ │ │ ├── help-donate-gbp.svg │ │ │ │ │ │ │ ├── help-donate-inr.svg │ │ │ │ │ │ │ ├── help-donate-jpy.svg │ │ │ │ │ │ │ ├── help-donate-mxn.svg │ │ │ │ │ │ │ ├── help-donate-pln.svg │ │ │ │ │ │ │ ├── help-donate-rub.svg │ │ │ │ │ │ │ ├── help-donate-sek.svg │ │ │ │ │ │ │ ├── help-donate-try.svg │ │ │ │ │ │ │ ├── help-donate-uah.svg │ │ │ │ │ │ │ ├── help-donate-usd.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keyboard-shortcuts.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── highlight-pointer-spot.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── horizontal.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── insertcellcopy.svg │ │ │ │ │ │ │ ├── interactive_simplify.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── interpolate-points.svg │ │ │ │ │ │ │ ├── interpolate.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join-type.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── keyframe-add.svg │ │ │ │ │ │ │ ├── keyframe-disable.svg │ │ │ │ │ │ │ ├── keyframe-duplicate.svg │ │ │ │ │ │ │ ├── keyframe-next.svg │ │ │ │ │ │ │ ├── keyframe-previous.svg │ │ │ │ │ │ │ ├── keyframe-record.svg │ │ │ │ │ │ │ ├── keyframe-remove.svg │ │ │ │ │ │ │ ├── keyframe.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── knot.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kruler-east.svg │ │ │ │ │ │ │ ├── kruler-north.svg │ │ │ │ │ │ │ ├── kruler-south.svg │ │ │ │ │ │ │ ├── kruler-west.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── lastfm-neighbour.svg │ │ │ │ │ │ │ ├── lastfm-personal.svg │ │ │ │ │ │ │ ├── lastfm-recommended.svg │ │ │ │ │ │ │ ├── lastfm-tag.svg │ │ │ │ │ │ │ ├── lattice2.svg │ │ │ │ │ │ │ ├── layer-bottom.svg │ │ │ │ │ │ │ ├── layer-delete.svg │ │ │ │ │ │ │ ├── layer-duplicate.svg │ │ │ │ │ │ │ ├── layer-lower.svg │ │ │ │ │ │ │ ├── layer-new.svg │ │ │ │ │ │ │ ├── layer-next.svg │ │ │ │ │ │ │ ├── layer-previous.svg │ │ │ │ │ │ │ ├── layer-raise.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-top.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── loved_radio.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-archive.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward-attachment.svg │ │ │ │ │ │ │ ├── mail-forward-custom.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-author.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── math1.svg │ │ │ │ │ │ │ ├── math2.svg │ │ │ │ │ │ │ ├── math3.svg │ │ │ │ │ │ │ ├── math7.svg │ │ │ │ │ │ │ ├── math9.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure-segments.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── media-write-cd.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── mergecell-horizontal.svg │ │ │ │ │ │ │ ├── mergecell-vertical.svg │ │ │ │ │ │ │ ├── mergecell.svg │ │ │ │ │ │ │ ├── mesh-gradient-fit.svg │ │ │ │ │ │ │ ├── mesh-gradient.svg │ │ │ │ │ │ │ ├── message-new.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mirror-symmetry.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── no-marker.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── node_insert_max_x.svg │ │ │ │ │ │ │ ├── node_insert_max_y.svg │ │ │ │ │ │ │ ├── node_insert_min_x.svg │ │ │ │ │ │ │ ├── node_insert_min_y.svg │ │ │ │ │ │ │ ├── none.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-fill.svg │ │ │ │ │ │ │ ├── object-flip-hor.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-ver.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-stroke-style.svg │ │ │ │ │ │ │ ├── object-stroke.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-forecast.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── office-report.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── pack-less.svg │ │ │ │ │ │ │ ├── pack-more.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-gradient-conical.svg │ │ │ │ │ │ │ ├── paint-gradient-linear.svg │ │ │ │ │ │ │ ├── paint-gradient-mesh.svg │ │ │ │ │ │ │ ├── paint-gradient-radial.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paint-pattern.svg │ │ │ │ │ │ │ ├── paint-solid.svg │ │ │ │ │ │ │ ├── paint-swatch.svg │ │ │ │ │ │ │ ├── paint-unknown.svg │ │ │ │ │ │ │ ├── paper-color.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-break-apart.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-combine.svg │ │ │ │ │ │ │ ├── path-cut.svg │ │ │ │ │ │ │ ├── path-difference.svg │ │ │ │ │ │ │ ├── path-division.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-exclusion.svg │ │ │ │ │ │ │ ├── path-inset.svg │ │ │ │ │ │ │ ├── path-intersection.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-bspline.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-offset-dynamic.svg │ │ │ │ │ │ │ ├── path-offset-linked.svg │ │ │ │ │ │ │ ├── path-outset.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── path-tweak-attract.svg │ │ │ │ │ │ │ ├── path-tweak-push.svg │ │ │ │ │ │ │ ├── path-tweak-roughen.svg │ │ │ │ │ │ │ ├── path-tweak-shrink.svg │ │ │ │ │ │ │ ├── path-union.svg │ │ │ │ │ │ │ ├── pattern.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective-envelope.svg │ │ │ │ │ │ │ ├── perspective-parallel.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── pixelart-trace.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── powerclip.svg │ │ │ │ │ │ │ ├── powermask.svg │ │ │ │ │ │ │ ├── powerstroke.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── pts2ellipse.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-asynchronous.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-cleanup.svg │ │ │ │ │ │ │ ├── rabbitvcs-clear.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-compare.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-merge.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-resolve.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── rectangle-make-corners-sharp.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-color.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resizecol.svg │ │ │ │ │ │ │ ├── resizerow.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── retweet.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── rough-hatches.svg │ │ │ │ │ │ │ ├── roughen.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── ruler.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-off.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-on.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── searching.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-above.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-below.svg │ │ │ │ │ │ │ ├── selection-move-to-layer.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection-touch.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-bounding-box.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-guides.svg │ │ │ │ │ │ │ ├── show-handles.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── simplify.svg │ │ │ │ │ │ │ ├── skeletal.svg │ │ │ │ │ │ │ ├── sketch.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slice.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-nodes.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-others.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── source-playlist.svg │ │ │ │ │ │ │ ├── source-smart-playlist.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── spiro.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spray-mode-clone.svg │ │ │ │ │ │ │ ├── spray-mode-copy.svg │ │ │ │ │ │ │ ├── spray-mode-union.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_calc-cancel.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_text-monospaced.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_volume.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── swatches.svg │ │ │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ │ │ ├── switch-on.svg │ │ │ │ │ │ │ ├── symbol-add.svg │ │ │ │ │ │ │ ├── symbol-bigger.svg │ │ │ │ │ │ │ ├── symbol-fit.svg │ │ │ │ │ │ │ ├── symbol-remove.svg │ │ │ │ │ │ │ ├── symbol-smaller.svg │ │ │ │ │ │ │ ├── symbols.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-edit.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-create.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── taper-stroke.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── text-convert-to-regular.svg │ │ │ │ │ │ │ ├── text-field-framed.svg │ │ │ │ │ │ │ ├── text-field-frameless.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-put-on-path.svg │ │ │ │ │ │ │ ├── text-remove-from-path.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-unkern.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_outer_style.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── too-much-ink-icon.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── transform-2pts.svg │ │ │ │ │ │ │ ├── transform-affect-gradient.svg │ │ │ │ │ │ │ ├── transform-affect-pattern.svg │ │ │ │ │ │ │ ├── transform-affect-rounded-corners.svg │ │ │ │ │ │ │ ├── transform-affect-stroke.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── usermenu-delete.svg │ │ │ │ │ │ │ ├── usermenu-down.svg │ │ │ │ │ │ │ ├── usermenu-up.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── vertical.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-add.svg │ │ │ │ │ │ │ ├── view-bank-delete.svg │ │ │ │ │ │ │ ├── view-bank-edit.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-currency-list.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-financial-account-add.svg │ │ │ │ │ │ │ ├── view-financial-account-asset-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-asset.svg │ │ │ │ │ │ │ ├── view-financial-account-cash-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-cash.svg │ │ │ │ │ │ │ ├── view-financial-account-checking-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-checking.svg │ │ │ │ │ │ │ ├── view-financial-account-close.svg │ │ │ │ │ │ │ ├── view-financial-account-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-delete.svg │ │ │ │ │ │ │ ├── view-financial-account-edit.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security.svg │ │ │ │ │ │ │ ├── view-financial-account-investment.svg │ │ │ │ │ │ │ ├── view-financial-account-liability-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-liability.svg │ │ │ │ │ │ │ ├── view-financial-account-loan-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-loan.svg │ │ │ │ │ │ │ ├── view-financial-account-reopen.svg │ │ │ │ │ │ │ ├── view-financial-account-savings-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-savings.svg │ │ │ │ │ │ │ ├── view-financial-account.svg │ │ │ │ │ │ │ ├── view-financial-budget.svg │ │ │ │ │ │ │ ├── view-financial-category-add.svg │ │ │ │ │ │ │ ├── view-financial-category-delete.svg │ │ │ │ │ │ │ ├── view-financial-category-edit.svg │ │ │ │ │ │ │ ├── view-financial-category-expense.svg │ │ │ │ │ │ │ ├── view-financial-category-income.svg │ │ │ │ │ │ │ ├── view-financial-category.svg │ │ │ │ │ │ │ ├── view-financial-list.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconcile.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconciled.svg │ │ │ │ │ │ │ ├── view-financial-transfer-unreconciled.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-institution-add.svg │ │ │ │ │ │ │ ├── view-institution-delete.svg │ │ │ │ │ │ │ ├── view-institution-edit.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-private.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-readermode-active.svg │ │ │ │ │ │ │ ├── view-readermode.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── vonkoch.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ │ ├── xfce-wm-close.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-center-page.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-drawing.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ └── system-lock-screen.svg │ │ │ │ │ ├── 22 │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-node.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-node.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animal.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── audio-card.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── auto-transition.svg │ │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backgroundtool.svg │ │ │ │ │ │ │ ├── backup.svg │ │ │ │ │ │ │ ├── bboxnext.svg │ │ │ │ │ │ │ ├── bboxprev.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── cab_view.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── calligraphy.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-mode-black-white.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-negative.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-positive.svg │ │ │ │ │ │ │ ├── color-mode-invert-image.svg │ │ │ │ │ │ │ ├── color-mode-invert-text.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composite-track-off.svg │ │ │ │ │ │ │ ├── composite-track-on.svg │ │ │ │ │ │ │ ├── composite-track-preview.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── cookies.svg │ │ │ │ │ │ │ ├── coordinate.svg │ │ │ │ │ │ │ ├── copy-coordinates.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ │ ├── description.svg │ │ │ │ │ │ │ ├── dfrac.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── discrete.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-node.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-node.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as-template.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── dontknow.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── drag-surface.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dvisearch.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── earthquake.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-group.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit_animation.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entrance_animations.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── errornext.svg │ │ │ │ │ │ │ ├── errorprev.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── exit_animations.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── favorite.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ │ │ ├── fitmanual.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flower-shape.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── food.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-convert-to-path.svg │ │ │ │ │ │ │ ├── format-currency.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-insert-node.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-node-corner.svg │ │ │ │ │ │ │ ├── format-node-curve.svg │ │ │ │ │ │ │ ├── format-node-line.svg │ │ │ │ │ │ │ ├── format-node-smooth.svg │ │ │ │ │ │ │ ├── format-node-symmetric.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-segment-curve.svg │ │ │ │ │ │ │ ├── format-segment-line.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-remote.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-autosum.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-bucket.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-accounting.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-all.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-none.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-format-percentage.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-decrease.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-increase.svg │ │ │ │ │ │ │ ├── gnumeric-format-thousand-separator.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-object-arrow.svg │ │ │ │ │ │ │ ├── gnumeric-object-button.svg │ │ │ │ │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ │ │ │ │ ├── gnumeric-object-combo.svg │ │ │ │ │ │ │ ├── gnumeric-object-ellipse.svg │ │ │ │ │ │ │ ├── gnumeric-object-label.svg │ │ │ │ │ │ │ ├── gnumeric-object-line.svg │ │ │ │ │ │ │ ├── gnumeric-object-list.svg │ │ │ │ │ │ │ ├── gnumeric-object-rectangle.svg │ │ │ │ │ │ │ ├── gnumeric-object-scrollbar.svg │ │ │ │ │ │ │ ├── gnumeric-object-spinbutton.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ │ │ │ │ ├── gnumeric-protection-no.svg │ │ │ │ │ │ │ ├── gnumeric-protection-yes.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag-new.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hand.svg │ │ │ │ │ │ │ ├── handle-left.svg │ │ │ │ │ │ │ ├── handle-move.svg │ │ │ │ │ │ │ ├── handle-right.svg │ │ │ │ │ │ │ ├── handle-sort.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hexagon-shape.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-adjust.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── item.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-composite.svg │ │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-no-composite.svg │ │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── know.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_cbound.svg │ │ │ │ │ │ │ ├── kstars_clines.svg │ │ │ │ │ │ │ ├── kstars_cnames.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_constellationart.svg │ │ │ │ │ │ │ ├── kstars_deepsky.svg │ │ │ │ │ │ │ ├── kstars_ekos.svg │ │ │ │ │ │ │ ├── kstars_fitsviewer.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_grid.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kstars_hgrid.svg │ │ │ │ │ │ │ ├── kstars_horizon.svg │ │ │ │ │ │ │ ├── kstars_indi.svg │ │ │ │ │ │ │ ├── kstars_mw.svg │ │ │ │ │ │ │ ├── kstars_planets.svg │ │ │ │ │ │ │ ├── kstars_satellites.svg │ │ │ │ │ │ │ ├── kstars_solarsystem.svg │ │ │ │ │ │ │ ├── kstars_stars.svg │ │ │ │ │ │ │ ├── kstars_supernovae.svg │ │ │ │ │ │ │ ├── kstars_xplanet.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-1x-zoom.svg │ │ │ │ │ │ │ ├── labplot-2x-zoom.svg │ │ │ │ │ │ │ ├── labplot-3x-zoom.svg │ │ │ │ │ │ │ ├── labplot-4x-zoom.svg │ │ │ │ │ │ │ ├── labplot-5x-zoom.svg │ │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-matrix-new.svg │ │ │ │ │ │ │ ├── labplot-matrix.svg │ │ │ │ │ │ │ ├── labplot-plot-axis-points.svg │ │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-workbook-new.svg │ │ │ │ │ │ │ ├── labplot-workbook.svg │ │ │ │ │ │ │ ├── labplot-worksheet-new.svg │ │ │ │ │ │ │ ├── labplot-worksheet.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-segments.svg │ │ │ │ │ │ │ ├── labplot-xy-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-interpolation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-four-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-smoothing-curve.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── latex-config.svg │ │ │ │ │ │ │ ├── latex.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lilypond.svg │ │ │ │ │ │ │ ├── linear.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── map-flat.svg │ │ │ │ │ │ │ ├── map-globe.svg │ │ │ │ │ │ │ ├── map-gnomonic.svg │ │ │ │ │ │ │ ├── map-mercator.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-mout.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── motion_path_animations.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── music-note-16th.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── newline.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── nextfuzzy.svg │ │ │ │ │ │ │ ├── nextfuzzyuntrans.svg │ │ │ │ │ │ │ ├── nextuntranslated.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── nroot.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-forecast.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── office-report.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-magnet.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ │ ├── overflow-menu-left.svg │ │ │ │ │ │ │ ├── overflow-menu-right.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paper-color.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── pathshape.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-sync.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── prevfuzzy.svg │ │ │ │ │ │ │ ├── prevfuzzyuntrans.svg │ │ │ │ │ │ │ ├── preview-add-zone.svg │ │ │ │ │ │ │ ├── preview-remove-all.svg │ │ │ │ │ │ │ ├── preview-remove-zone.svg │ │ │ │ │ │ │ ├── preview-render-off.svg │ │ │ │ │ │ │ ├── preview-render-on.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── prevuntranslated.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-defaults.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-asynchronous.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-compare.svg │ │ │ │ │ │ │ ├── rabbitvcs-createpatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-merge.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── record.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── rime-im.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-all-effects.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-gpu-effects.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── skg-chart-bubble.svg │ │ │ │ │ │ │ ├── skrooge_credit_card.svg │ │ │ │ │ │ │ ├── skrooge_less.svg │ │ │ │ │ │ │ ├── skrooge_more.svg │ │ │ │ │ │ │ ├── skrooge_much_less.svg │ │ │ │ │ │ │ ├── skrooge_much_more.svg │ │ │ │ │ │ │ ├── skrooge_type.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallfrac.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smartnewline.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── smiley-shape.svg │ │ │ │ │ │ │ ├── smiley.svg │ │ │ │ │ │ │ ├── smooth.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_ChargedParticle.svg │ │ │ │ │ │ │ ├── step_object_CircularMotor.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_CoulombForce.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Gas.svg │ │ │ │ │ │ │ ├── step_object_GasParticle.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_GravitationForce.svg │ │ │ │ │ │ │ ├── step_object_LinearMotor.svg │ │ │ │ │ │ │ ├── step_object_Meter.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_SoftBody.svg │ │ │ │ │ │ │ ├── step_object_Spring.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── step_object_Tracer.svg │ │ │ │ │ │ │ ├── step_object_WeightForce.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-filters-apply.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-edit.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── texcompiler.svg │ │ │ │ │ │ │ ├── texlion.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_remove_kerns.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ │ ├── timeline-extract.svg │ │ │ │ │ │ │ ├── timeline-insert.svg │ │ │ │ │ │ │ ├── timeline-lift.svg │ │ │ │ │ │ │ ├── timeline-overwrite.svg │ │ │ │ │ │ │ ├── timeline-use-zone-off.svg │ │ │ │ │ │ │ ├── timeline-use-zone-on.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_eraser.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_curve.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_free_form_selection.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_spraycan.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── torrents.svg │ │ │ │ │ │ │ ├── transform-browse.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-horizontal.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale-vertical.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── typewriter.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── username-copy.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ │ ├── view-bank-add.svg │ │ │ │ │ │ │ ├── view-bank-delete.svg │ │ │ │ │ │ │ ├── view-bank-edit.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-currency-list.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-financial-account-add.svg │ │ │ │ │ │ │ ├── view-financial-account-asset-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-asset.svg │ │ │ │ │ │ │ ├── view-financial-account-cash-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-cash.svg │ │ │ │ │ │ │ ├── view-financial-account-checking-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-checking.svg │ │ │ │ │ │ │ ├── view-financial-account-close.svg │ │ │ │ │ │ │ ├── view-financial-account-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-credit-card-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-credit-card.svg │ │ │ │ │ │ │ ├── view-financial-account-delete.svg │ │ │ │ │ │ │ ├── view-financial-account-edit.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security.svg │ │ │ │ │ │ │ ├── view-financial-account-investment.svg │ │ │ │ │ │ │ ├── view-financial-account-liability-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-liability.svg │ │ │ │ │ │ │ ├── view-financial-account-loan-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-loan.svg │ │ │ │ │ │ │ ├── view-financial-account-reopen.svg │ │ │ │ │ │ │ ├── view-financial-account-savings-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-savings.svg │ │ │ │ │ │ │ ├── view-financial-account.svg │ │ │ │ │ │ │ ├── view-financial-budget.svg │ │ │ │ │ │ │ ├── view-financial-category-add.svg │ │ │ │ │ │ │ ├── view-financial-category-delete.svg │ │ │ │ │ │ │ ├── view-financial-category-edit.svg │ │ │ │ │ │ │ ├── view-financial-category-expense.svg │ │ │ │ │ │ │ ├── view-financial-category-income.svg │ │ │ │ │ │ │ ├── view-financial-category.svg │ │ │ │ │ │ │ ├── view-financial-list.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconcile.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconciled.svg │ │ │ │ │ │ │ ├── view-financial-transfer-unreconciled.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-institution-add.svg │ │ │ │ │ │ │ ├── view-institution-delete.svg │ │ │ │ │ │ │ ├── view-institution-edit.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-chart.svg │ │ │ │ │ │ │ ├── view-media-config.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-favorite.svg │ │ │ │ │ │ │ ├── view-media-genre.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playcount.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-recent.svg │ │ │ │ │ │ │ ├── view-media-similarartists.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-track.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-effect.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-unsplit-effect.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewdvi.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── wallet-closed.svg │ │ │ │ │ │ │ ├── wallet-open.svg │ │ │ │ │ │ │ ├── warnnext.svg │ │ │ │ │ │ │ ├── warnprev.svg │ │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── zone-in.svg │ │ │ │ │ │ │ ├── zone-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-pixels.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-logout.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-lock.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ └── xfsm-shutdown.svg │ │ │ │ │ ├── 24 │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-node.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-node.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animal.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── audio-volume-high.svg │ │ │ │ │ │ │ ├── audio-volume-low.svg │ │ │ │ │ │ │ ├── audio-volume-medium.svg │ │ │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── auto-transition.svg │ │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backgroundtool.svg │ │ │ │ │ │ │ ├── bboxnext.svg │ │ │ │ │ │ │ ├── bboxprev.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── calligraphy.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composite-track-off.svg │ │ │ │ │ │ │ ├── composite-track-on.svg │ │ │ │ │ │ │ ├── composite-track-preview.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── cookies.svg │ │ │ │ │ │ │ ├── coordinate.svg │ │ │ │ │ │ │ ├── copy-coordinates.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ │ ├── description.svg │ │ │ │ │ │ │ ├── dfrac.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── discrete.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-node.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-node.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as-template.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── dontknow.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── drag-surface.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dvisearch.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── earthquake.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-group.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit_animation.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entrance_animations.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── errornext.svg │ │ │ │ │ │ │ ├── errorprev.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── exit_animations.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── favorite.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flower-shape.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── food.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-convert-to-path.svg │ │ │ │ │ │ │ ├── format-currency.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-insert-node.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-node-corner.svg │ │ │ │ │ │ │ ├── format-node-curve.svg │ │ │ │ │ │ │ ├── format-node-line.svg │ │ │ │ │ │ │ ├── format-node-smooth.svg │ │ │ │ │ │ │ ├── format-node-symmetric.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-segment-curve.svg │ │ │ │ │ │ │ ├── format-segment-line.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── frmt-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── frmt-text-direction-r2l.svg │ │ │ │ │ │ │ ├── frmt-text-direction-vertical-lr.svg │ │ │ │ │ │ │ ├── frmt-text-direction-vertical.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-autosum.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-bucket.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-accounting.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-all.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-none.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-format-percentage.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-decrease.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-increase.svg │ │ │ │ │ │ │ ├── gnumeric-format-thousand-separator.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-object-arrow.svg │ │ │ │ │ │ │ ├── gnumeric-object-button.svg │ │ │ │ │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ │ │ │ │ ├── gnumeric-object-combo.svg │ │ │ │ │ │ │ ├── gnumeric-object-ellipse.svg │ │ │ │ │ │ │ ├── gnumeric-object-label.svg │ │ │ │ │ │ │ ├── gnumeric-object-line.svg │ │ │ │ │ │ │ ├── gnumeric-object-list.svg │ │ │ │ │ │ │ ├── gnumeric-object-rectangle.svg │ │ │ │ │ │ │ ├── gnumeric-object-scrollbar.svg │ │ │ │ │ │ │ ├── gnumeric-object-spinbutton.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ │ │ │ │ ├── gnumeric-protection-no.svg │ │ │ │ │ │ │ ├── gnumeric-protection-yes.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hand.svg │ │ │ │ │ │ │ ├── handle-left.svg │ │ │ │ │ │ │ ├── handle-move.svg │ │ │ │ │ │ │ ├── handle-right.svg │ │ │ │ │ │ │ ├── handle-sort.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hexagon-shape.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── item.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-composite.svg │ │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-no-composite.svg │ │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── know.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_cbound.svg │ │ │ │ │ │ │ ├── kstars_clines.svg │ │ │ │ │ │ │ ├── kstars_cnames.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_constellationart.svg │ │ │ │ │ │ │ ├── kstars_deepsky.svg │ │ │ │ │ │ │ ├── kstars_ekos.svg │ │ │ │ │ │ │ ├── kstars_fitsviewer.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_grid.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kstars_hgrid.svg │ │ │ │ │ │ │ ├── kstars_horizon.svg │ │ │ │ │ │ │ ├── kstars_indi.svg │ │ │ │ │ │ │ ├── kstars_mw.svg │ │ │ │ │ │ │ ├── kstars_planets.svg │ │ │ │ │ │ │ ├── kstars_satellites.svg │ │ │ │ │ │ │ ├── kstars_solarsystem.svg │ │ │ │ │ │ │ ├── kstars_stars.svg │ │ │ │ │ │ │ ├── kstars_supernovae.svg │ │ │ │ │ │ │ ├── kstars_xplanet.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-1x-zoom.svg │ │ │ │ │ │ │ ├── labplot-2x-zoom.svg │ │ │ │ │ │ │ ├── labplot-3x-zoom.svg │ │ │ │ │ │ │ ├── labplot-4x-zoom.svg │ │ │ │ │ │ │ ├── labplot-5x-zoom.svg │ │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-matrix-new.svg │ │ │ │ │ │ │ ├── labplot-matrix.svg │ │ │ │ │ │ │ ├── labplot-plot-axis-points.svg │ │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-workbook-new.svg │ │ │ │ │ │ │ ├── labplot-workbook.svg │ │ │ │ │ │ │ ├── labplot-worksheet-new.svg │ │ │ │ │ │ │ ├── labplot-worksheet.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-segments.svg │ │ │ │ │ │ │ ├── labplot-xy-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-interpolation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-four-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-smoothing-curve.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── latex-config.svg │ │ │ │ │ │ │ ├── latex.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lilypond.svg │ │ │ │ │ │ │ ├── linear.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── map-flat.svg │ │ │ │ │ │ │ ├── map-globe.svg │ │ │ │ │ │ │ ├── map-gnomonic.svg │ │ │ │ │ │ │ ├── map-mercator.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-mout.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── mesh-gradient.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── motion_path_animations.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── music-note-16th.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── newline.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── nextfuzzy.svg │ │ │ │ │ │ │ ├── nextfuzzyuntrans.svg │ │ │ │ │ │ │ ├── nextuntranslated.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── nroot.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ │ ├── overflow-menu-left.svg │ │ │ │ │ │ │ ├── overflow-menu-right.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paint-order-fms.svg │ │ │ │ │ │ │ ├── paint-order-fsm.svg │ │ │ │ │ │ │ ├── paint-order-mfs.svg │ │ │ │ │ │ │ ├── paint-order-msf.svg │ │ │ │ │ │ │ ├── paint-order-sfm.svg │ │ │ │ │ │ │ ├── paint-order-smf.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── pathshape.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-sync.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── prevfuzzy.svg │ │ │ │ │ │ │ ├── prevfuzzyuntrans.svg │ │ │ │ │ │ │ ├── preview-add-zone.svg │ │ │ │ │ │ │ ├── preview-remove-all.svg │ │ │ │ │ │ │ ├── preview-remove-zone.svg │ │ │ │ │ │ │ ├── preview-render-off.svg │ │ │ │ │ │ │ ├── preview-render-on.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── prevuntranslated.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-defaults.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-all-effects.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-gpu-effects.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── skg-chart-bubble.svg │ │ │ │ │ │ │ ├── skrooge_credit_card.svg │ │ │ │ │ │ │ ├── skrooge_less.svg │ │ │ │ │ │ │ ├── skrooge_more.svg │ │ │ │ │ │ │ ├── skrooge_much_less.svg │ │ │ │ │ │ │ ├── skrooge_much_more.svg │ │ │ │ │ │ │ ├── skrooge_type.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallfrac.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smartnewline.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── smiley-shape.svg │ │ │ │ │ │ │ ├── smiley.svg │ │ │ │ │ │ │ ├── smooth.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_ChargedParticle.svg │ │ │ │ │ │ │ ├── step_object_CircularMotor.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_CoulombForce.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Gas.svg │ │ │ │ │ │ │ ├── step_object_GasParticle.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_GravitationForce.svg │ │ │ │ │ │ │ ├── step_object_LinearMotor.svg │ │ │ │ │ │ │ ├── step_object_Meter.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_SoftBody.svg │ │ │ │ │ │ │ ├── step_object_Spring.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── step_object_Tracer.svg │ │ │ │ │ │ │ ├── step_object_WeightForce.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_volume.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── texcompiler.svg │ │ │ │ │ │ │ ├── texlion.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-orientation-auto.svg │ │ │ │ │ │ │ ├── text-orientation-sideways.svg │ │ │ │ │ │ │ ├── text-orientation-upright.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_remove_kerns.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ │ ├── timeline-extract.svg │ │ │ │ │ │ │ ├── timeline-insert.svg │ │ │ │ │ │ │ ├── timeline-lift.svg │ │ │ │ │ │ │ ├── timeline-overwrite.svg │ │ │ │ │ │ │ ├── timeline-use-zone-off.svg │ │ │ │ │ │ │ ├── timeline-use-zone-on.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_eraser.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_curve.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_free_form_selection.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_spraycan.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── torrents.svg │ │ │ │ │ │ │ ├── transform-browse.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-horizontal.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale-vertical.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── typewriter.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── username-copy.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-chart.svg │ │ │ │ │ │ │ ├── view-media-config.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-favorite.svg │ │ │ │ │ │ │ ├── view-media-genre.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playcount.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-recent.svg │ │ │ │ │ │ │ ├── view-media-similarartists.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-track.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-effect.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-unsplit-effect.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewdvi.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── wallet-closed.svg │ │ │ │ │ │ │ ├── wallet-open.svg │ │ │ │ │ │ │ ├── warnnext.svg │ │ │ │ │ │ │ ├── warnprev.svg │ │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ │ ├── zone-in.svg │ │ │ │ │ │ │ ├── zone-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-center-page.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-pixels.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-lock.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ └── xfsm-shutdown.svg │ │ │ │ │ ├── 32 │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── cursor-cross.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── gnumeric-format-halign-distributed.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-center.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-distributed.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-justify.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-top.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── multiple.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── weather-clear-night.svg │ │ │ │ │ │ │ ├── weather-clear.svg │ │ │ │ │ │ │ ├── weather-clouds-night.svg │ │ │ │ │ │ │ ├── weather-clouds.svg │ │ │ │ │ │ │ ├── weather-few-clouds-night.svg │ │ │ │ │ │ │ ├── weather-few-clouds.svg │ │ │ │ │ │ │ ├── weather-many-clouds.svg │ │ │ │ │ │ │ ├── weather-showers-scattered.svg │ │ │ │ │ │ │ ├── weather-showers.svg │ │ │ │ │ │ │ ├── weather-storm.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 48 │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 64 │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── weather-clear-night.svg │ │ │ │ │ │ │ ├── weather-clear.svg │ │ │ │ │ │ │ ├── weather-clouds-night.svg │ │ │ │ │ │ │ ├── weather-clouds.svg │ │ │ │ │ │ │ ├── weather-few-clouds-night.svg │ │ │ │ │ │ │ ├── weather-few-clouds.svg │ │ │ │ │ │ │ ├── weather-many-clouds.svg │ │ │ │ │ │ │ ├── weather-overcast.svg │ │ │ │ │ │ │ ├── weather-showers-scattered.svg │ │ │ │ │ │ │ ├── weather-showers.svg │ │ │ │ │ │ │ ├── weather-storm-day.svg │ │ │ │ │ │ │ ├── weather-storm-night.svg │ │ │ │ │ │ │ ├── weather-storm.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 16@2x │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── action-unavailable.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add-subtitle.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcol.svg │ │ │ │ │ │ │ ├── adjustrow.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-on-canvas.svg │ │ │ │ │ │ │ ├── align-sel-as-group.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── attach-path.svg │ │ │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── automated-tasks.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backup.svg │ │ │ │ │ │ │ ├── bad-marker.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bend-path.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── bool-op.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── bounding-box.svg │ │ │ │ │ │ │ ├── boundingbox_bottom.svg │ │ │ │ │ │ │ ├── boundingbox_bottom_left.svg │ │ │ │ │ │ │ ├── boundingbox_bottom_right.svg │ │ │ │ │ │ │ ├── boundingbox_center.svg │ │ │ │ │ │ │ ├── boundingbox_left.svg │ │ │ │ │ │ │ ├── boundingbox_right.svg │ │ │ │ │ │ │ ├── boundingbox_top.svg │ │ │ │ │ │ │ ├── boundingbox_top_left.svg │ │ │ │ │ │ │ ├── boundingbox_top_right.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── bspline.svg │ │ │ │ │ │ │ ├── bug.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── cab_view.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── clone-original.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_copyfullnamestoclip.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_packfiles.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-mode-black-white.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-negative.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-positive.svg │ │ │ │ │ │ │ ├── color-mode-invert-image.svg │ │ │ │ │ │ │ ├── color-mode-invert-text.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── connector-avoid.svg │ │ │ │ │ │ │ ├── connector-ignore.svg │ │ │ │ │ │ │ ├── connector-orthogonal.svg │ │ │ │ │ │ │ ├── construct-grid.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── copy-rotate.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── curvestitching.svg │ │ │ │ │ │ │ ├── cvc-configure.svg │ │ │ │ │ │ │ ├── cvc-connect.svg │ │ │ │ │ │ │ ├── cvc-disconnect.svg │ │ │ │ │ │ │ ├── cvc-info.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── dashed-stroke.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── delete_table.svg │ │ │ │ │ │ │ ├── deletecell.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-fill-and-stroke.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-geometry.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-layers.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-objects.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-path-effects.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-rows-and-columns.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-templates.svg │ │ │ │ │ │ │ ├── dialog-text-and-font.svg │ │ │ │ │ │ │ ├── dialog-tile-clones.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── dissociatecell.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-compareleft.svg │ │ │ │ │ │ │ ├── document-compareright.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-duplicate.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-equal.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-metadata.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-scan.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-single.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── document-unequal.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse-arc.svg │ │ │ │ │ │ │ ├── draw-ellipse-chord.svg │ │ │ │ │ │ │ ├── draw-ellipse-segment.svg │ │ │ │ │ │ │ ├── draw-ellipse-whole.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser-delete-objects.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-geometry-angle-bisector.svg │ │ │ │ │ │ │ ├── draw-geometry-circle-from-radius.svg │ │ │ │ │ │ │ ├── draw-geometry-circle-from-three-points.svg │ │ │ │ │ │ │ ├── draw-geometry-inactive.svg │ │ │ │ │ │ │ ├── draw-geometry-line-parallel.svg │ │ │ │ │ │ │ ├── draw-geometry-line-perpendicular.svg │ │ │ │ │ │ │ ├── draw-geometry-line-segment.svg │ │ │ │ │ │ │ ├── draw-geometry-mirror.svg │ │ │ │ │ │ │ ├── draw-geometry-set-bounding-box.svg │ │ │ │ │ │ │ ├── draw-geometry-show-measuring-info.svg │ │ │ │ │ │ │ ├── draw-geometry.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star-outline.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-trace-background.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-use-pressure.svg │ │ │ │ │ │ │ ├── draw-use-tilt.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-link-lpe.svg │ │ │ │ │ │ │ ├── edit-clone-link.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-duplicate.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-move.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-height-separately.svg │ │ │ │ │ │ │ ├── edit-paste-height.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste-size-separately.svg │ │ │ │ │ │ │ ├── edit-paste-size.svg │ │ │ │ │ │ │ ├── edit-paste-style.svg │ │ │ │ │ │ │ ├── edit-paste-width-separately.svg │ │ │ │ │ │ │ ├── edit-paste-width.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all-layers.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ │ ├── edit-select-same-fill-and-stroke.svg │ │ │ │ │ │ │ ├── edit-select-same-fill.svg │ │ │ │ │ │ │ ├── edit-select-same-object-type.svg │ │ │ │ │ │ │ ├── edit-select-same-stroke-color.svg │ │ │ │ │ │ │ ├── edit-select-same-stroke-style.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-5pts.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embrodery-stitch.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── empty-icon.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── envelope.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── fcitx-anthy.svg │ │ │ │ │ │ │ ├── fcitx-hangul.svg │ │ │ │ │ │ │ ├── fcitx-kbd.svg │ │ │ │ │ │ │ ├── fcitx-vk-active.svg │ │ │ │ │ │ │ ├── fcitx-vk-inactive.svg │ │ │ │ │ │ │ ├── feTile-icon.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-between-many.svg │ │ │ │ │ │ │ ├── fill-between-strokes.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── fill-rule-even-odd.svg │ │ │ │ │ │ │ ├── fill-rule-nonzero.svg │ │ │ │ │ │ │ ├── fillet-chamfer.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── fitmanual.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flatten.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font-face.svg │ │ │ │ │ │ │ ├── font-size-down.svg │ │ │ │ │ │ │ ├── font-size-up.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── foreign_green.svg │ │ │ │ │ │ │ ├── foreign_red.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── gears.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-remote.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pivottable.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-axonometric.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag-new.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-dismiss.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hamburger-menu.svg │ │ │ │ │ │ │ ├── hatches.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate-ars.svg │ │ │ │ │ │ │ ├── help-donate-aud.svg │ │ │ │ │ │ │ ├── help-donate-brl.svg │ │ │ │ │ │ │ ├── help-donate-cad.svg │ │ │ │ │ │ │ ├── help-donate-chf.svg │ │ │ │ │ │ │ ├── help-donate-cny.svg │ │ │ │ │ │ │ ├── help-donate-eur.svg │ │ │ │ │ │ │ ├── help-donate-gbp.svg │ │ │ │ │ │ │ ├── help-donate-inr.svg │ │ │ │ │ │ │ ├── help-donate-jpy.svg │ │ │ │ │ │ │ ├── help-donate-mxn.svg │ │ │ │ │ │ │ ├── help-donate-pln.svg │ │ │ │ │ │ │ ├── help-donate-rub.svg │ │ │ │ │ │ │ ├── help-donate-sek.svg │ │ │ │ │ │ │ ├── help-donate-try.svg │ │ │ │ │ │ │ ├── help-donate-uah.svg │ │ │ │ │ │ │ ├── help-donate-usd.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keyboard-shortcuts.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── highlight-pointer-spot.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── horizontal.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── insertcellcopy.svg │ │ │ │ │ │ │ ├── interactive_simplify.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── interpolate-points.svg │ │ │ │ │ │ │ ├── interpolate.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join-type.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── keyframe-add.svg │ │ │ │ │ │ │ ├── keyframe-disable.svg │ │ │ │ │ │ │ ├── keyframe-duplicate.svg │ │ │ │ │ │ │ ├── keyframe-next.svg │ │ │ │ │ │ │ ├── keyframe-previous.svg │ │ │ │ │ │ │ ├── keyframe-record.svg │ │ │ │ │ │ │ ├── keyframe-remove.svg │ │ │ │ │ │ │ ├── keyframe.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── knot.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kruler-east.svg │ │ │ │ │ │ │ ├── kruler-north.svg │ │ │ │ │ │ │ ├── kruler-south.svg │ │ │ │ │ │ │ ├── kruler-west.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── lastfm-neighbour.svg │ │ │ │ │ │ │ ├── lastfm-personal.svg │ │ │ │ │ │ │ ├── lastfm-recommended.svg │ │ │ │ │ │ │ ├── lastfm-tag.svg │ │ │ │ │ │ │ ├── lattice2.svg │ │ │ │ │ │ │ ├── layer-bottom.svg │ │ │ │ │ │ │ ├── layer-delete.svg │ │ │ │ │ │ │ ├── layer-duplicate.svg │ │ │ │ │ │ │ ├── layer-lower.svg │ │ │ │ │ │ │ ├── layer-new.svg │ │ │ │ │ │ │ ├── layer-next.svg │ │ │ │ │ │ │ ├── layer-previous.svg │ │ │ │ │ │ │ ├── layer-raise.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-top.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── loved_radio.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-archive.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward-attachment.svg │ │ │ │ │ │ │ ├── mail-forward-custom.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-author.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── math1.svg │ │ │ │ │ │ │ ├── math2.svg │ │ │ │ │ │ │ ├── math3.svg │ │ │ │ │ │ │ ├── math7.svg │ │ │ │ │ │ │ ├── math9.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure-segments.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── media-write-cd.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── mergecell-horizontal.svg │ │ │ │ │ │ │ ├── mergecell-vertical.svg │ │ │ │ │ │ │ ├── mergecell.svg │ │ │ │ │ │ │ ├── mesh-gradient-fit.svg │ │ │ │ │ │ │ ├── mesh-gradient.svg │ │ │ │ │ │ │ ├── message-new.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mirror-symmetry.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── no-marker.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── node_insert_max_x.svg │ │ │ │ │ │ │ ├── node_insert_max_y.svg │ │ │ │ │ │ │ ├── node_insert_min_x.svg │ │ │ │ │ │ │ ├── node_insert_min_y.svg │ │ │ │ │ │ │ ├── none.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-fill.svg │ │ │ │ │ │ │ ├── object-flip-hor.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-ver.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-stroke-style.svg │ │ │ │ │ │ │ ├── object-stroke.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-forecast.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── office-report.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── pack-less.svg │ │ │ │ │ │ │ ├── pack-more.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-gradient-conical.svg │ │ │ │ │ │ │ ├── paint-gradient-linear.svg │ │ │ │ │ │ │ ├── paint-gradient-mesh.svg │ │ │ │ │ │ │ ├── paint-gradient-radial.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paint-pattern.svg │ │ │ │ │ │ │ ├── paint-solid.svg │ │ │ │ │ │ │ ├── paint-swatch.svg │ │ │ │ │ │ │ ├── paint-unknown.svg │ │ │ │ │ │ │ ├── paper-color.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-break-apart.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-combine.svg │ │ │ │ │ │ │ ├── path-cut.svg │ │ │ │ │ │ │ ├── path-difference.svg │ │ │ │ │ │ │ ├── path-division.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-exclusion.svg │ │ │ │ │ │ │ ├── path-inset.svg │ │ │ │ │ │ │ ├── path-intersection.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-bspline.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-offset-dynamic.svg │ │ │ │ │ │ │ ├── path-offset-linked.svg │ │ │ │ │ │ │ ├── path-outset.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── path-tweak-attract.svg │ │ │ │ │ │ │ ├── path-tweak-push.svg │ │ │ │ │ │ │ ├── path-tweak-roughen.svg │ │ │ │ │ │ │ ├── path-tweak-shrink.svg │ │ │ │ │ │ │ ├── path-union.svg │ │ │ │ │ │ │ ├── pattern.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective-envelope.svg │ │ │ │ │ │ │ ├── perspective-parallel.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── pixelart-trace.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── powerclip.svg │ │ │ │ │ │ │ ├── powermask.svg │ │ │ │ │ │ │ ├── powerstroke.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── pts2ellipse.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-asynchronous.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-cleanup.svg │ │ │ │ │ │ │ ├── rabbitvcs-clear.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-compare.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-merge.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-resolve.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── rectangle-make-corners-sharp.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-color.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resizecol.svg │ │ │ │ │ │ │ ├── resizerow.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── retweet.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── rough-hatches.svg │ │ │ │ │ │ │ ├── roughen.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── ruler.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-off.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-on.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── searching.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-above.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-below.svg │ │ │ │ │ │ │ ├── selection-move-to-layer.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection-touch.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-bounding-box.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-guides.svg │ │ │ │ │ │ │ ├── show-handles.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── simplify.svg │ │ │ │ │ │ │ ├── skeletal.svg │ │ │ │ │ │ │ ├── sketch.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slice.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-nodes.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-others.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── source-playlist.svg │ │ │ │ │ │ │ ├── source-smart-playlist.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── spiro.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spray-mode-clone.svg │ │ │ │ │ │ │ ├── spray-mode-copy.svg │ │ │ │ │ │ │ ├── spray-mode-union.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_calc-cancel.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_text-monospaced.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_volume.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── swatches.svg │ │ │ │ │ │ │ ├── switch-off.svg │ │ │ │ │ │ │ ├── switch-on.svg │ │ │ │ │ │ │ ├── symbol-add.svg │ │ │ │ │ │ │ ├── symbol-bigger.svg │ │ │ │ │ │ │ ├── symbol-fit.svg │ │ │ │ │ │ │ ├── symbol-remove.svg │ │ │ │ │ │ │ ├── symbol-smaller.svg │ │ │ │ │ │ │ ├── symbols.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-edit.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-create.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── taper-stroke.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── text-convert-to-regular.svg │ │ │ │ │ │ │ ├── text-field-framed.svg │ │ │ │ │ │ │ ├── text-field-frameless.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-put-on-path.svg │ │ │ │ │ │ │ ├── text-remove-from-path.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-unkern.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_outer_style.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── too-much-ink-icon.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── transform-2pts.svg │ │ │ │ │ │ │ ├── transform-affect-gradient.svg │ │ │ │ │ │ │ ├── transform-affect-pattern.svg │ │ │ │ │ │ │ ├── transform-affect-rounded-corners.svg │ │ │ │ │ │ │ ├── transform-affect-stroke.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── usermenu-delete.svg │ │ │ │ │ │ │ ├── usermenu-down.svg │ │ │ │ │ │ │ ├── usermenu-up.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── vertical.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-add.svg │ │ │ │ │ │ │ ├── view-bank-delete.svg │ │ │ │ │ │ │ ├── view-bank-edit.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-currency-list.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-financial-account-add.svg │ │ │ │ │ │ │ ├── view-financial-account-asset-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-asset.svg │ │ │ │ │ │ │ ├── view-financial-account-cash-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-cash.svg │ │ │ │ │ │ │ ├── view-financial-account-checking-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-checking.svg │ │ │ │ │ │ │ ├── view-financial-account-close.svg │ │ │ │ │ │ │ ├── view-financial-account-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-delete.svg │ │ │ │ │ │ │ ├── view-financial-account-edit.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security.svg │ │ │ │ │ │ │ ├── view-financial-account-investment.svg │ │ │ │ │ │ │ ├── view-financial-account-liability-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-liability.svg │ │ │ │ │ │ │ ├── view-financial-account-loan-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-loan.svg │ │ │ │ │ │ │ ├── view-financial-account-reopen.svg │ │ │ │ │ │ │ ├── view-financial-account-savings-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-savings.svg │ │ │ │ │ │ │ ├── view-financial-account.svg │ │ │ │ │ │ │ ├── view-financial-budget.svg │ │ │ │ │ │ │ ├── view-financial-category-add.svg │ │ │ │ │ │ │ ├── view-financial-category-delete.svg │ │ │ │ │ │ │ ├── view-financial-category-edit.svg │ │ │ │ │ │ │ ├── view-financial-category-expense.svg │ │ │ │ │ │ │ ├── view-financial-category-income.svg │ │ │ │ │ │ │ ├── view-financial-category.svg │ │ │ │ │ │ │ ├── view-financial-list.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconcile.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconciled.svg │ │ │ │ │ │ │ ├── view-financial-transfer-unreconciled.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-institution-add.svg │ │ │ │ │ │ │ ├── view-institution-delete.svg │ │ │ │ │ │ │ ├── view-institution-edit.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-private.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-readermode-active.svg │ │ │ │ │ │ │ ├── view-readermode.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── vonkoch.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ │ ├── xfce-wm-close.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-center-page.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-drawing.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ └── system-lock-screen.svg │ │ │ │ │ ├── 22@2x │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-node.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-node.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animal.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── audio-card.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── auto-transition.svg │ │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backgroundtool.svg │ │ │ │ │ │ │ ├── backup.svg │ │ │ │ │ │ │ ├── bboxnext.svg │ │ │ │ │ │ │ ├── bboxprev.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── cab_view.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── calligraphy.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-mode-black-white.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-negative.svg │ │ │ │ │ │ │ ├── color-mode-hue-shift-positive.svg │ │ │ │ │ │ │ ├── color-mode-invert-image.svg │ │ │ │ │ │ │ ├── color-mode-invert-text.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composite-track-off.svg │ │ │ │ │ │ │ ├── composite-track-on.svg │ │ │ │ │ │ │ ├── composite-track-preview.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── cookies.svg │ │ │ │ │ │ │ ├── coordinate.svg │ │ │ │ │ │ │ ├── copy-coordinates.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ │ ├── description.svg │ │ │ │ │ │ │ ├── dfrac.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── discrete.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-node.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-node.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as-template.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── dontknow.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── drag-surface.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dvisearch.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── earthquake.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-group.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit_animation.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entrance_animations.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── errornext.svg │ │ │ │ │ │ │ ├── errorprev.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── exit_animations.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── favorite.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ │ │ ├── fitmanual.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flower-shape.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── food.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-convert-to-path.svg │ │ │ │ │ │ │ ├── format-currency.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-insert-node.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-node-corner.svg │ │ │ │ │ │ │ ├── format-node-curve.svg │ │ │ │ │ │ │ ├── format-node-line.svg │ │ │ │ │ │ │ ├── format-node-smooth.svg │ │ │ │ │ │ │ ├── format-node-symmetric.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-segment-curve.svg │ │ │ │ │ │ │ ├── format-segment-line.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-remote.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-autosum.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-bucket.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-accounting.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-all.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-none.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-format-percentage.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-decrease.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-increase.svg │ │ │ │ │ │ │ ├── gnumeric-format-thousand-separator.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-object-arrow.svg │ │ │ │ │ │ │ ├── gnumeric-object-button.svg │ │ │ │ │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ │ │ │ │ ├── gnumeric-object-combo.svg │ │ │ │ │ │ │ ├── gnumeric-object-ellipse.svg │ │ │ │ │ │ │ ├── gnumeric-object-label.svg │ │ │ │ │ │ │ ├── gnumeric-object-line.svg │ │ │ │ │ │ │ ├── gnumeric-object-list.svg │ │ │ │ │ │ │ ├── gnumeric-object-rectangle.svg │ │ │ │ │ │ │ ├── gnumeric-object-scrollbar.svg │ │ │ │ │ │ │ ├── gnumeric-object-spinbutton.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ │ │ │ │ ├── gnumeric-protection-no.svg │ │ │ │ │ │ │ ├── gnumeric-protection-yes.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag-new.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hand.svg │ │ │ │ │ │ │ ├── handle-left.svg │ │ │ │ │ │ │ ├── handle-move.svg │ │ │ │ │ │ │ ├── handle-right.svg │ │ │ │ │ │ │ ├── handle-sort.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hexagon-shape.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-adjust.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── item.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-composite.svg │ │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-no-composite.svg │ │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── know.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_cbound.svg │ │ │ │ │ │ │ ├── kstars_clines.svg │ │ │ │ │ │ │ ├── kstars_cnames.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_constellationart.svg │ │ │ │ │ │ │ ├── kstars_deepsky.svg │ │ │ │ │ │ │ ├── kstars_ekos.svg │ │ │ │ │ │ │ ├── kstars_fitsviewer.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_grid.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kstars_hgrid.svg │ │ │ │ │ │ │ ├── kstars_horizon.svg │ │ │ │ │ │ │ ├── kstars_indi.svg │ │ │ │ │ │ │ ├── kstars_mw.svg │ │ │ │ │ │ │ ├── kstars_planets.svg │ │ │ │ │ │ │ ├── kstars_satellites.svg │ │ │ │ │ │ │ ├── kstars_solarsystem.svg │ │ │ │ │ │ │ ├── kstars_stars.svg │ │ │ │ │ │ │ ├── kstars_supernovae.svg │ │ │ │ │ │ │ ├── kstars_xplanet.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-1x-zoom.svg │ │ │ │ │ │ │ ├── labplot-2x-zoom.svg │ │ │ │ │ │ │ ├── labplot-3x-zoom.svg │ │ │ │ │ │ │ ├── labplot-4x-zoom.svg │ │ │ │ │ │ │ ├── labplot-5x-zoom.svg │ │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-matrix-new.svg │ │ │ │ │ │ │ ├── labplot-matrix.svg │ │ │ │ │ │ │ ├── labplot-plot-axis-points.svg │ │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-workbook-new.svg │ │ │ │ │ │ │ ├── labplot-workbook.svg │ │ │ │ │ │ │ ├── labplot-worksheet-new.svg │ │ │ │ │ │ │ ├── labplot-worksheet.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-segments.svg │ │ │ │ │ │ │ ├── labplot-xy-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-interpolation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-four-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-smoothing-curve.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── latex-config.svg │ │ │ │ │ │ │ ├── latex.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lilypond.svg │ │ │ │ │ │ │ ├── linear.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── map-flat.svg │ │ │ │ │ │ │ ├── map-globe.svg │ │ │ │ │ │ │ ├── map-gnomonic.svg │ │ │ │ │ │ │ ├── map-mercator.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-mout.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── motion_path_animations.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── music-note-16th.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── newline.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── nextfuzzy.svg │ │ │ │ │ │ │ ├── nextfuzzyuntrans.svg │ │ │ │ │ │ │ ├── nextuntranslated.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── nroot.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-forecast.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── office-report.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-magnet.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ │ ├── overflow-menu-left.svg │ │ │ │ │ │ │ ├── overflow-menu-right.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paper-color.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── pathshape.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-sync.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── prevfuzzy.svg │ │ │ │ │ │ │ ├── prevfuzzyuntrans.svg │ │ │ │ │ │ │ ├── preview-add-zone.svg │ │ │ │ │ │ │ ├── preview-remove-all.svg │ │ │ │ │ │ │ ├── preview-remove-zone.svg │ │ │ │ │ │ │ ├── preview-render-off.svg │ │ │ │ │ │ │ ├── preview-render-on.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── prevuntranslated.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-defaults.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-asynchronous.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-compare.svg │ │ │ │ │ │ │ ├── rabbitvcs-createpatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-merge.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── record.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── rime-im.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-all-effects.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-gpu-effects.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── skg-chart-bubble.svg │ │ │ │ │ │ │ ├── skrooge_credit_card.svg │ │ │ │ │ │ │ ├── skrooge_less.svg │ │ │ │ │ │ │ ├── skrooge_more.svg │ │ │ │ │ │ │ ├── skrooge_much_less.svg │ │ │ │ │ │ │ ├── skrooge_much_more.svg │ │ │ │ │ │ │ ├── skrooge_type.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallfrac.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smartnewline.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── smiley-shape.svg │ │ │ │ │ │ │ ├── smiley.svg │ │ │ │ │ │ │ ├── smooth.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_ChargedParticle.svg │ │ │ │ │ │ │ ├── step_object_CircularMotor.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_CoulombForce.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Gas.svg │ │ │ │ │ │ │ ├── step_object_GasParticle.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_GravitationForce.svg │ │ │ │ │ │ │ ├── step_object_LinearMotor.svg │ │ │ │ │ │ │ ├── step_object_Meter.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_SoftBody.svg │ │ │ │ │ │ │ ├── step_object_Spring.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── step_object_Tracer.svg │ │ │ │ │ │ │ ├── step_object_WeightForce.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-filters-apply.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-edit.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── texcompiler.svg │ │ │ │ │ │ │ ├── texlion.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_remove_kerns.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ │ ├── timeline-extract.svg │ │ │ │ │ │ │ ├── timeline-insert.svg │ │ │ │ │ │ │ ├── timeline-lift.svg │ │ │ │ │ │ │ ├── timeline-overwrite.svg │ │ │ │ │ │ │ ├── timeline-use-zone-off.svg │ │ │ │ │ │ │ ├── timeline-use-zone-on.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_eraser.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_curve.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_free_form_selection.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_spraycan.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── torrents.svg │ │ │ │ │ │ │ ├── transform-browse.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-horizontal.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale-vertical.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── typewriter.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── username-copy.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ │ ├── view-bank-add.svg │ │ │ │ │ │ │ ├── view-bank-delete.svg │ │ │ │ │ │ │ ├── view-bank-edit.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-currency-list.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-financial-account-add.svg │ │ │ │ │ │ │ ├── view-financial-account-asset-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-asset.svg │ │ │ │ │ │ │ ├── view-financial-account-cash-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-cash.svg │ │ │ │ │ │ │ ├── view-financial-account-checking-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-checking.svg │ │ │ │ │ │ │ ├── view-financial-account-close.svg │ │ │ │ │ │ │ ├── view-financial-account-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-credit-card-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-credit-card.svg │ │ │ │ │ │ │ ├── view-financial-account-delete.svg │ │ │ │ │ │ │ ├── view-financial-account-edit.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-investment-security.svg │ │ │ │ │ │ │ ├── view-financial-account-investment.svg │ │ │ │ │ │ │ ├── view-financial-account-liability-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-liability.svg │ │ │ │ │ │ │ ├── view-financial-account-loan-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-loan.svg │ │ │ │ │ │ │ ├── view-financial-account-reopen.svg │ │ │ │ │ │ │ ├── view-financial-account-savings-closed.svg │ │ │ │ │ │ │ ├── view-financial-account-savings.svg │ │ │ │ │ │ │ ├── view-financial-account.svg │ │ │ │ │ │ │ ├── view-financial-budget.svg │ │ │ │ │ │ │ ├── view-financial-category-add.svg │ │ │ │ │ │ │ ├── view-financial-category-delete.svg │ │ │ │ │ │ │ ├── view-financial-category-edit.svg │ │ │ │ │ │ │ ├── view-financial-category-expense.svg │ │ │ │ │ │ │ ├── view-financial-category-income.svg │ │ │ │ │ │ │ ├── view-financial-category.svg │ │ │ │ │ │ │ ├── view-financial-list.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconcile.svg │ │ │ │ │ │ │ ├── view-financial-transfer-reconciled.svg │ │ │ │ │ │ │ ├── view-financial-transfer-unreconciled.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-institution-add.svg │ │ │ │ │ │ │ ├── view-institution-delete.svg │ │ │ │ │ │ │ ├── view-institution-edit.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-chart.svg │ │ │ │ │ │ │ ├── view-media-config.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-favorite.svg │ │ │ │ │ │ │ ├── view-media-genre.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playcount.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-recent.svg │ │ │ │ │ │ │ ├── view-media-similarartists.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-track.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-effect.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-unsplit-effect.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewdvi.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── wallet-closed.svg │ │ │ │ │ │ │ ├── wallet-open.svg │ │ │ │ │ │ │ ├── warnnext.svg │ │ │ │ │ │ │ ├── warnprev.svg │ │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── zone-in.svg │ │ │ │ │ │ │ ├── zone-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-pixels.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-logout.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-lock.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ └── xfsm-shutdown.svg │ │ │ │ │ ├── 24@2x │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── CVnamespace.svg │ │ │ │ │ │ │ ├── Finished.svg │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── PrePostCondition.svg │ │ │ │ │ │ │ ├── SuggestionTM.svg │ │ │ │ │ │ │ ├── accept_signal.svg │ │ │ │ │ │ │ ├── accept_time_event.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── activities.svg │ │ │ │ │ │ │ ├── activity-fork.svg │ │ │ │ │ │ │ ├── actor.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook-details.svg │ │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── aggregation.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-node.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-node.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── anchor.svg │ │ │ │ │ │ │ ├── animal.svg │ │ │ │ │ │ │ ├── animation-stage.svg │ │ │ │ │ │ │ ├── answer-correct.svg │ │ │ │ │ │ │ ├── answer.svg │ │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── approved.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── artifact.svg │ │ │ │ │ │ │ ├── artistictext-tool.svg │ │ │ │ │ │ │ ├── association.svg │ │ │ │ │ │ │ ├── atmosphere.svg │ │ │ │ │ │ │ ├── audio-volume-high.svg │ │ │ │ │ │ │ ├── audio-volume-low.svg │ │ │ │ │ │ │ ├── audio-volume-medium.svg │ │ │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── auto-transition.svg │ │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── backgroundtool.svg │ │ │ │ │ │ │ ├── bboxnext.svg │ │ │ │ │ │ │ ├── bboxprev.svg │ │ │ │ │ │ │ ├── beamerblock.svg │ │ │ │ │ │ │ ├── beamerframe.svg │ │ │ │ │ │ │ ├── bibtex.svg │ │ │ │ │ │ │ ├── bigskip.svg │ │ │ │ │ │ │ ├── black_sum.svg │ │ │ │ │ │ │ ├── blueman-plugin.svg │ │ │ │ │ │ │ ├── blueman-send-file.svg │ │ │ │ │ │ │ ├── blueman-trust.svg │ │ │ │ │ │ │ ├── blueman-untrust.svg │ │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add-folder.svg │ │ │ │ │ │ │ ├── bookmark-edit.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── borderpainter.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── branch.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── burst.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── call-voicemail.svg │ │ │ │ │ │ │ ├── calligraphy.svg │ │ │ │ │ │ │ ├── callout-shape.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── cards-block.svg │ │ │ │ │ │ │ ├── category.svg │ │ │ │ │ │ │ ├── category2parent.svg │ │ │ │ │ │ │ ├── cell_edit.svg │ │ │ │ │ │ │ ├── cell_layout.svg │ │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ │ ├── check-filled.svg │ │ │ │ │ │ │ ├── check_constraint.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── child2category.svg │ │ │ │ │ │ │ ├── choice-rhomb.svg │ │ │ │ │ │ │ ├── choice-round.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── circular-arrow-shape.svg │ │ │ │ │ │ │ ├── class-or-package.svg │ │ │ │ │ │ │ ├── class.svg │ │ │ │ │ │ │ ├── clock-large.svg │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ ├── cm_columnsview.svg │ │ │ │ │ │ │ ├── cm_extractfiles.svg │ │ │ │ │ │ │ ├── cm_options.svg │ │ │ │ │ │ │ ├── cm_refresh.svg │ │ │ │ │ │ │ ├── cm_search.svg │ │ │ │ │ │ │ ├── cm_syncdirs.svg │ │ │ │ │ │ │ ├── cm_thumbnailsview.svg │ │ │ │ │ │ │ ├── cm_viewhistorynext.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── combined_fragment.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── component.svg │ │ │ │ │ │ │ ├── composite-track-off.svg │ │ │ │ │ │ │ ├── composite-track-on.svg │ │ │ │ │ │ │ ├── composite-track-preview.svg │ │ │ │ │ │ │ ├── composition.svg │ │ │ │ │ │ │ ├── configuration.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── configure_kile.svg │ │ │ │ │ │ │ ├── configure_project.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── containment.svg │ │ │ │ │ │ │ ├── contents.svg │ │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ │ ├── convert.svg │ │ │ │ │ │ │ ├── cookies.svg │ │ │ │ │ │ │ ├── coordinate.svg │ │ │ │ │ │ │ ├── copy-coordinates.svg │ │ │ │ │ │ │ ├── createpath.svg │ │ │ │ │ │ │ ├── cross-shape.svg │ │ │ │ │ │ │ ├── crosshairs.svg │ │ │ │ │ │ │ ├── currenttrack_pause.svg │ │ │ │ │ │ │ ├── currenttrack_play.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── datatype.svg │ │ │ │ │ │ │ ├── dblatex.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── deep-history.svg │ │ │ │ │ │ │ ├── delete-comment.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── delete.svg │ │ │ │ │ │ │ ├── dependency.svg │ │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ │ ├── description.svg │ │ │ │ │ │ │ ├── dfrac.svg │ │ │ │ │ │ │ ├── diag_activity.svg │ │ │ │ │ │ │ ├── diag_class.svg │ │ │ │ │ │ │ ├── diag_component.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-selectors.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── discrete.svg │ │ │ │ │ │ │ ├── displaymathmode.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-node.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-node.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as-template.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── dontknow.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── drag-surface.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-arrow.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-highlight.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle-rounded.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dvipdf.svg │ │ │ │ │ │ │ ├── dvipng.svg │ │ │ │ │ │ │ ├── dvips.svg │ │ │ │ │ │ │ ├── dvisearch.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── earthquake.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-comment.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-remove.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-flag.svg │ │ │ │ │ │ │ ├── edit-group.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-line-width.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-map.svg │ │ │ │ │ │ │ ├── edit-mark.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-none.svg │ │ │ │ │ │ │ ├── edit-opacity.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-text.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit_animation.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── editpath.svg │ │ │ │ │ │ │ ├── edittext.svg │ │ │ │ │ │ │ ├── ellipse-shape.svg │ │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ │ ├── emph.svg │ │ │ │ │ │ │ ├── end_of_life.svg │ │ │ │ │ │ │ ├── end_state.svg │ │ │ │ │ │ │ ├── enterprise.svg │ │ │ │ │ │ │ ├── entity.svg │ │ │ │ │ │ │ ├── entrance_animations.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-edit.svg │ │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ │ ├── enum.svg │ │ │ │ │ │ │ ├── enumerate.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── error.svg │ │ │ │ │ │ │ ├── errornext.svg │ │ │ │ │ │ │ ├── errorprev.svg │ │ │ │ │ │ │ ├── escape-direction-all.svg │ │ │ │ │ │ │ ├── escape-direction-down.svg │ │ │ │ │ │ │ ├── escape-direction-horizontal.svg │ │ │ │ │ │ │ ├── escape-direction-left.svg │ │ │ │ │ │ │ ├── escape-direction-right.svg │ │ │ │ │ │ │ ├── escape-direction-up.svg │ │ │ │ │ │ │ ├── escape-direction-vertical.svg │ │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── exit_animations.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── favorite.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filegrep.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ │ ├── final_activity.svg │ │ │ │ │ │ │ ├── find-location.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── flower-shape.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-saved-search.svg │ │ │ │ │ │ │ ├── folder-stash.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder-tag.svg │ │ │ │ │ │ │ ├── folder_color_picker.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── font-disable.svg │ │ │ │ │ │ │ ├── font-enable.svg │ │ │ │ │ │ │ ├── font.svg │ │ │ │ │ │ │ ├── food.svg │ │ │ │ │ │ │ ├── foreignkey_constraint.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-align-vertical-bottom.svg │ │ │ │ │ │ │ ├── format-align-vertical-center.svg │ │ │ │ │ │ │ ├── format-align-vertical-top.svg │ │ │ │ │ │ │ ├── format-border-set-all.svg │ │ │ │ │ │ │ ├── format-border-set-bottom.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-bl-tr.svg │ │ │ │ │ │ │ ├── format-border-set-diagonal-tl-br.svg │ │ │ │ │ │ │ ├── format-border-set-external.svg │ │ │ │ │ │ │ ├── format-border-set-internal-horizontal.svg │ │ │ │ │ │ │ ├── format-border-set-internal-vertical.svg │ │ │ │ │ │ │ ├── format-border-set-internal.svg │ │ │ │ │ │ │ ├── format-border-set-left.svg │ │ │ │ │ │ │ ├── format-border-set-none.svg │ │ │ │ │ │ │ ├── format-border-set-right.svg │ │ │ │ │ │ │ ├── format-border-set-top.svg │ │ │ │ │ │ │ ├── format-border-style.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-convert-to-path.svg │ │ │ │ │ │ │ ├── format-currency.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-insert-node.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-node-corner.svg │ │ │ │ │ │ │ ├── format-node-curve.svg │ │ │ │ │ │ │ ├── format-node-line.svg │ │ │ │ │ │ │ ├── format-node-smooth.svg │ │ │ │ │ │ │ ├── format-node-symmetric.svg │ │ │ │ │ │ │ ├── format-number-percent.svg │ │ │ │ │ │ │ ├── format-precision-less.svg │ │ │ │ │ │ │ ├── format-precision-more.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-segment-curve.svg │ │ │ │ │ │ │ ├── format-segment-line.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-capitalize.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-lowercase.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline-squiggle.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── format-text-uppercase.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── frmt-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── frmt-text-direction-r2l.svg │ │ │ │ │ │ │ ├── frmt-text-direction-vertical-lr.svg │ │ │ │ │ │ │ ├── frmt-text-direction-vertical.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── gearhead-shape.svg │ │ │ │ │ │ │ ├── generalisation.svg │ │ │ │ │ │ │ ├── generalise.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── giggle-history-view.svg │ │ │ │ │ │ │ ├── giggle-tag.svg │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-lockscreen.svg │ │ │ │ │ │ │ ├── gnome-searchtool.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter-delete.svg │ │ │ │ │ │ │ ├── gnumeric-autofilter.svg │ │ │ │ │ │ │ ├── gnumeric-autosum.svg │ │ │ │ │ │ │ ├── gnumeric-brush.svg │ │ │ │ │ │ │ ├── gnumeric-bucket.svg │ │ │ │ │ │ │ ├── gnumeric-cells-merge.svg │ │ │ │ │ │ │ ├── gnumeric-cells-split.svg │ │ │ │ │ │ │ ├── gnumeric-column-add.svg │ │ │ │ │ │ │ ├── gnumeric-column-delete.svg │ │ │ │ │ │ │ ├── gnumeric-column-hide.svg │ │ │ │ │ │ │ ├── gnumeric-column-size.svg │ │ │ │ │ │ │ ├── gnumeric-column-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-comment-add.svg │ │ │ │ │ │ │ ├── gnumeric-comment-delete.svg │ │ │ │ │ │ │ ├── gnumeric-comment-edit.svg │ │ │ │ │ │ │ ├── gnumeric-component-insert-shaped.svg │ │ │ │ │ │ │ ├── gnumeric-data-slicer.svg │ │ │ │ │ │ │ ├── gnumeric-font.svg │ │ │ │ │ │ │ ├── gnumeric-format-accounting.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-all.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-inside-horiz.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-left.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-none.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-rev-diag.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-right.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-thick-outside.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-double-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top-n-thick-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-border-top.svg │ │ │ │ │ │ │ ├── gnumeric-format-percentage.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-decrease.svg │ │ │ │ │ │ │ ├── gnumeric-format-precision-increase.svg │ │ │ │ │ │ │ ├── gnumeric-format-thousand-separator.svg │ │ │ │ │ │ │ ├── gnumeric-formulaguru.svg │ │ │ │ │ │ │ ├── gnumeric-graphguru.svg │ │ │ │ │ │ │ ├── gnumeric-group.svg │ │ │ │ │ │ │ ├── gnumeric-link-add.svg │ │ │ │ │ │ │ ├── gnumeric-link-delete.svg │ │ │ │ │ │ │ ├── gnumeric-link-edit.svg │ │ │ │ │ │ │ ├── gnumeric-link-email.svg │ │ │ │ │ │ │ ├── gnumeric-link-external.svg │ │ │ │ │ │ │ ├── gnumeric-link-internal.svg │ │ │ │ │ │ │ ├── gnumeric-link-url.svg │ │ │ │ │ │ │ ├── gnumeric-object-arrow.svg │ │ │ │ │ │ │ ├── gnumeric-object-button.svg │ │ │ │ │ │ │ ├── gnumeric-object-checkbox.svg │ │ │ │ │ │ │ ├── gnumeric-object-combo.svg │ │ │ │ │ │ │ ├── gnumeric-object-ellipse.svg │ │ │ │ │ │ │ ├── gnumeric-object-label.svg │ │ │ │ │ │ │ ├── gnumeric-object-line.svg │ │ │ │ │ │ │ ├── gnumeric-object-list.svg │ │ │ │ │ │ │ ├── gnumeric-object-rectangle.svg │ │ │ │ │ │ │ ├── gnumeric-object-scrollbar.svg │ │ │ │ │ │ │ ├── gnumeric-object-spinbutton.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-cell.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-page.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-pages.svg │ │ │ │ │ │ │ ├── gnumeric-pagesetup-hf-time.svg │ │ │ │ │ │ │ ├── gnumeric-protection-no.svg │ │ │ │ │ │ │ ├── gnumeric-protection-yes.svg │ │ │ │ │ │ │ ├── gnumeric-row-add.svg │ │ │ │ │ │ │ ├── gnumeric-row-delete.svg │ │ │ │ │ │ │ ├── gnumeric-row-hide.svg │ │ │ │ │ │ │ ├── gnumeric-row-size.svg │ │ │ │ │ │ │ ├── gnumeric-row-unhide.svg │ │ │ │ │ │ │ ├── gnumeric-subscript.svg │ │ │ │ │ │ │ ├── gnumeric-superscript.svg │ │ │ │ │ │ │ ├── gnumeric-ungroup.svg │ │ │ │ │ │ │ ├── gnumeric-visible.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home-large.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-left-symbolic.svg │ │ │ │ │ │ │ ├── go-left.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-right-symbolic.svg │ │ │ │ │ │ │ ├── go-right.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gps.svg │ │ │ │ │ │ │ ├── gradient.svg │ │ │ │ │ │ │ ├── graphics.svg │ │ │ │ │ │ │ ├── grid-rectangular.svg │ │ │ │ │ │ │ ├── group-delete.svg │ │ │ │ │ │ │ ├── group-edit.svg │ │ │ │ │ │ │ ├── group-new.svg │ │ │ │ │ │ │ ├── group.svg │ │ │ │ │ │ │ ├── gtg-home.svg │ │ │ │ │ │ │ ├── gtg-plugin.svg │ │ │ │ │ │ │ ├── gtg-tag.svg │ │ │ │ │ │ │ ├── gtg-tags-none.svg │ │ │ │ │ │ │ ├── gtg-task-done.svg │ │ │ │ │ │ │ ├── gtg-task-new.svg │ │ │ │ │ │ │ ├── gtg-task-undismiss.svg │ │ │ │ │ │ │ ├── gtg-task-undone.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-directory.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-file.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-indent-ltr.svg │ │ │ │ │ │ │ ├── gtk-indent-rtl.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-italic.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-justify-center.svg │ │ │ │ │ │ │ ├── gtk-justify-fill.svg │ │ │ │ │ │ │ ├── gtk-justify-left.svg │ │ │ │ │ │ │ ├── gtk-justify-right.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-network.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-spell-check.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── guides.svg │ │ │ │ │ │ │ ├── hand.svg │ │ │ │ │ │ │ ├── handle-left.svg │ │ │ │ │ │ │ ├── handle-move.svg │ │ │ │ │ │ │ ├── handle-right.svg │ │ │ │ │ │ │ ├── handle-sort.svg │ │ │ │ │ │ │ ├── hb-add-queue.svg │ │ │ │ │ │ │ ├── hb-complete.svg │ │ │ │ │ │ │ ├── hb-pause.svg │ │ │ │ │ │ │ ├── hb-presets.svg │ │ │ │ │ │ │ ├── hb-remove.svg │ │ │ │ │ │ │ ├── hb-showqueue.svg │ │ │ │ │ │ │ ├── hb-source.svg │ │ │ │ │ │ │ ├── hb-start.svg │ │ │ │ │ │ │ ├── hb-stop.svg │ │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-latex.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── hexagon-shape.svg │ │ │ │ │ │ │ ├── hide_table_column.svg │ │ │ │ │ │ │ ├── hide_table_row.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── history.svg │ │ │ │ │ │ │ ├── history_entry.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-irc.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-local-xmpp.svg │ │ │ │ │ │ │ ├── im-message-new.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── im-youtube.svg │ │ │ │ │ │ │ ├── image-auto-adjust.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── initial_state.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── input-mouse-click-left.svg │ │ │ │ │ │ │ ├── input-mouse-click-middle.svg │ │ │ │ │ │ │ ├── input-mouse-click-right.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-math-expression.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-page-break.svg │ │ │ │ │ │ │ ├── insert-table-of-contents.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── insertcell.svg │ │ │ │ │ │ │ ├── interface.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── internet-services.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── item.svg │ │ │ │ │ │ │ ├── itemize.svg │ │ │ │ │ │ │ ├── items-tags.svg │ │ │ │ │ │ │ ├── itmages-add.svg │ │ │ │ │ │ │ ├── itmages-cancel.svg │ │ │ │ │ │ │ ├── itmages-copy-link.svg │ │ │ │ │ │ │ ├── itmages-folder.svg │ │ │ │ │ │ │ ├── itmages-open-browser.svg │ │ │ │ │ │ │ ├── itmages-quit.svg │ │ │ │ │ │ │ ├── itmages-resize.svg │ │ │ │ │ │ │ ├── itmages-rotate.svg │ │ │ │ │ │ │ ├── itmages-select-all.svg │ │ │ │ │ │ │ ├── itmages-settings.svg │ │ │ │ │ │ │ ├── itmages-stop.svg │ │ │ │ │ │ │ ├── itmages-tools.svg │ │ │ │ │ │ │ ├── itmages-upload.svg │ │ │ │ │ │ │ ├── itmages-utils.svg │ │ │ │ │ │ │ ├── join.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── junction.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-composite.svg │ │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-no-composite.svg │ │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── kdocumentinfo.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmousetool_off.svg │ │ │ │ │ │ │ ├── kmousetool_on.svg │ │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── know.svg │ │ │ │ │ │ │ ├── kontes_close.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kstars_advanced.svg │ │ │ │ │ │ │ ├── kstars_catalog.svg │ │ │ │ │ │ │ ├── kstars_cbound.svg │ │ │ │ │ │ │ ├── kstars_clines.svg │ │ │ │ │ │ │ ├── kstars_cnames.svg │ │ │ │ │ │ │ ├── kstars_colors.svg │ │ │ │ │ │ │ ├── kstars_constellationart.svg │ │ │ │ │ │ │ ├── kstars_deepsky.svg │ │ │ │ │ │ │ ├── kstars_ekos.svg │ │ │ │ │ │ │ ├── kstars_fitsviewer.svg │ │ │ │ │ │ │ ├── kstars_flag.svg │ │ │ │ │ │ │ ├── kstars_grid.svg │ │ │ │ │ │ │ ├── kstars_guides.svg │ │ │ │ │ │ │ ├── kstars_hgrid.svg │ │ │ │ │ │ │ ├── kstars_horizon.svg │ │ │ │ │ │ │ ├── kstars_indi.svg │ │ │ │ │ │ │ ├── kstars_mw.svg │ │ │ │ │ │ │ ├── kstars_planets.svg │ │ │ │ │ │ │ ├── kstars_satellites.svg │ │ │ │ │ │ │ ├── kstars_solarsystem.svg │ │ │ │ │ │ │ ├── kstars_stars.svg │ │ │ │ │ │ │ ├── kstars_supernovae.svg │ │ │ │ │ │ │ ├── kstars_xplanet.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_all_to.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── l2h.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── label.svg │ │ │ │ │ │ │ ├── labplot-1x-zoom.svg │ │ │ │ │ │ │ ├── labplot-2x-zoom.svg │ │ │ │ │ │ │ ├── labplot-3x-zoom.svg │ │ │ │ │ │ │ ├── labplot-4x-zoom.svg │ │ │ │ │ │ │ ├── labplot-5x-zoom.svg │ │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-all.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-x.svg │ │ │ │ │ │ │ ├── labplot-auto-scale-y.svg │ │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-editbreaklayout.svg │ │ │ │ │ │ │ ├── labplot-editgrid.svg │ │ │ │ │ │ │ ├── labplot-edithlayout.svg │ │ │ │ │ │ │ ├── labplot-editvlayout.svg │ │ │ │ │ │ │ ├── labplot-format-text-symbol.svg │ │ │ │ │ │ │ ├── labplot-matrix-new.svg │ │ │ │ │ │ │ ├── labplot-matrix.svg │ │ │ │ │ │ │ ├── labplot-plot-axis-points.svg │ │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet-new.svg │ │ │ │ │ │ │ ├── labplot-spreadsheet.svg │ │ │ │ │ │ │ ├── labplot-transform-move.svg │ │ │ │ │ │ │ ├── labplot-workbook-new.svg │ │ │ │ │ │ │ ├── labplot-workbook.svg │ │ │ │ │ │ │ ├── labplot-worksheet-new.svg │ │ │ │ │ │ │ ├── labplot-worksheet.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-points.svg │ │ │ │ │ │ │ ├── labplot-xy-curve-segments.svg │ │ │ │ │ │ │ ├── labplot-xy-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-filter-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fourier-transform-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-interpolation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-four-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered-origin.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes-centered.svg │ │ │ │ │ │ │ ├── labplot-xy-plot-two-axes.svg │ │ │ │ │ │ │ ├── labplot-xy-smoothing-curve.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── languages.svg │ │ │ │ │ │ │ ├── latex-config.svg │ │ │ │ │ │ │ ├── latex.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lens.svg │ │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ │ ├── libpeas-plugin.svg │ │ │ │ │ │ │ ├── license.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lilypond.svg │ │ │ │ │ │ │ ├── linear.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── love.svg │ │ │ │ │ │ │ ├── lpi-bug.svg │ │ │ │ │ │ │ ├── lpi-translate.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-flagged.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-task.svg │ │ │ │ │ │ │ ├── mail-thread-ignored.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── makeidx.svg │ │ │ │ │ │ │ ├── map-flat.svg │ │ │ │ │ │ │ ├── map-globe.svg │ │ │ │ │ │ │ ├── map-gnomonic.svg │ │ │ │ │ │ │ ├── map-mercator.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── markasblank.svg │ │ │ │ │ │ │ ├── math0.svg │ │ │ │ │ │ │ ├── mathmode.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-mount.svg │ │ │ │ │ │ │ ├── media-mout.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-append.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-play.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-track-show-active.svg │ │ │ │ │ │ │ ├── medskip.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── meld-version-control.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── mesh-gradient.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── minuet-chords.svg │ │ │ │ │ │ │ ├── minuet-intervals.svg │ │ │ │ │ │ │ ├── minuet-rhythms.svg │ │ │ │ │ │ │ ├── minuet-scales.svg │ │ │ │ │ │ │ ├── mode1.svg │ │ │ │ │ │ │ ├── mode2.svg │ │ │ │ │ │ │ ├── mode3.svg │ │ │ │ │ │ │ ├── mode4.svg │ │ │ │ │ │ │ ├── mode5.svg │ │ │ │ │ │ │ ├── modified.svg │ │ │ │ │ │ │ ├── motion_path_animations.svg │ │ │ │ │ │ │ ├── mpost.svg │ │ │ │ │ │ │ ├── msgid2msgstr.svg │ │ │ │ │ │ │ ├── multimedia-volume-control.svg │ │ │ │ │ │ │ ├── multirow.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── music-note-16th.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── new-command-alarm.svg │ │ │ │ │ │ │ ├── newline.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── nextfuzzy.svg │ │ │ │ │ │ │ ├── nextfuzzyuntrans.svg │ │ │ │ │ │ │ ├── nextuntranslated.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── node-add.svg │ │ │ │ │ │ │ ├── node-break.svg │ │ │ │ │ │ │ ├── node-delete-segment.svg │ │ │ │ │ │ │ ├── node-delete.svg │ │ │ │ │ │ │ ├── node-join-segment.svg │ │ │ │ │ │ │ ├── node-join.svg │ │ │ │ │ │ │ ├── node-segment-curve.svg │ │ │ │ │ │ │ ├── node-segment-line.svg │ │ │ │ │ │ │ ├── node-transform.svg │ │ │ │ │ │ │ ├── node-type-auto-smooth.svg │ │ │ │ │ │ │ ├── node-type-cusp.svg │ │ │ │ │ │ │ ├── node-type-smooth.svg │ │ │ │ │ │ │ ├── node-type-symmetric.svg │ │ │ │ │ │ │ ├── node.svg │ │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ │ ├── note.svg │ │ │ │ │ │ │ ├── notifications-disabled.svg │ │ │ │ │ │ │ ├── notifications.svg │ │ │ │ │ │ │ ├── nroot.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-columns.svg │ │ │ │ │ │ │ ├── object-crop.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-inverse.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-rows.svg │ │ │ │ │ │ │ ├── object-to-path.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup-pop-selection.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── object.svg │ │ │ │ │ │ │ ├── object_node.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── offline-settings.svg │ │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ │ ├── open-for-editing.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ │ ├── overflow-menu-left.svg │ │ │ │ │ │ │ ├── overflow-menu-right.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── package.svg │ │ │ │ │ │ │ ├── package_settings.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── paint-none.svg │ │ │ │ │ │ │ ├── paint-order-fms.svg │ │ │ │ │ │ │ ├── paint-order-fsm.svg │ │ │ │ │ │ │ ├── paint-order-mfs.svg │ │ │ │ │ │ │ ├── paint-order-msf.svg │ │ │ │ │ │ │ ├── paint-order-sfm.svg │ │ │ │ │ │ │ ├── paint-order-smf.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── password-generate.svg │ │ │ │ │ │ │ ├── password-show-off.svg │ │ │ │ │ │ │ ├── password-show-on.svg │ │ │ │ │ │ │ ├── path-clip-edit.svg │ │ │ │ │ │ │ ├── path-effect-parameter-next.svg │ │ │ │ │ │ │ ├── path-mask-edit.svg │ │ │ │ │ │ │ ├── path-mode-bezier.svg │ │ │ │ │ │ │ ├── path-mode-polyline-paraxial.svg │ │ │ │ │ │ │ ├── path-mode-polyline.svg │ │ │ │ │ │ │ ├── path-mode-spiro.svg │ │ │ │ │ │ │ ├── path-reverse.svg │ │ │ │ │ │ │ ├── path-simplify.svg │ │ │ │ │ │ │ ├── pathshape.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── pdflatex.svg │ │ │ │ │ │ │ ├── pdftex.svg │ │ │ │ │ │ │ ├── pentagon-shape.svg │ │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ │ ├── photo.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ │ ├── podcast-new.svg │ │ │ │ │ │ │ ├── poedit-fuzzy.svg │ │ │ │ │ │ │ ├── poedit-status-bookmark.svg │ │ │ │ │ │ │ ├── poedit-status-cat-mid.svg │ │ │ │ │ │ │ ├── poedit-status-cat-no.svg │ │ │ │ │ │ │ ├── poedit-status-cat-ok.svg │ │ │ │ │ │ │ ├── poedit-status-comment.svg │ │ │ │ │ │ │ ├── poedit-sync.svg │ │ │ │ │ │ │ ├── poedit-update.svg │ │ │ │ │ │ │ ├── poedit-validate.svg │ │ │ │ │ │ │ ├── pointer.svg │ │ │ │ │ │ │ ├── polygon-add-nodes.svg │ │ │ │ │ │ │ ├── polygon-merge-nodes.svg │ │ │ │ │ │ │ ├── port.svg │ │ │ │ │ │ │ ├── postalcode.svg │ │ │ │ │ │ │ ├── practice-setup.svg │ │ │ │ │ │ │ ├── practice-start.svg │ │ │ │ │ │ │ ├── practice-stop.svg │ │ │ │ │ │ │ ├── precondition.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-desktop-notification-bell.svg │ │ │ │ │ │ │ ├── preferences-desktop-user-password.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-system-session-services.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── presence_away.svg │ │ │ │ │ │ │ ├── presence_offline.svg │ │ │ │ │ │ │ ├── presence_online.svg │ │ │ │ │ │ │ ├── presence_unknown.svg │ │ │ │ │ │ │ ├── prevfuzzy.svg │ │ │ │ │ │ │ ├── prevfuzzyuntrans.svg │ │ │ │ │ │ │ ├── preview-add-zone.svg │ │ │ │ │ │ │ ├── preview-remove-all.svg │ │ │ │ │ │ │ ├── preview-remove-zone.svg │ │ │ │ │ │ │ ├── preview-render-off.svg │ │ │ │ │ │ │ ├── preview-render-on.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── preview_math.svg │ │ │ │ │ │ │ ├── preview_sel.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── prevuntranslated.svg │ │ │ │ │ │ │ ├── primarykey_constraint.svg │ │ │ │ │ │ │ ├── privatebrowsing.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-defaults.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── project_add.svg │ │ │ │ │ │ │ ├── project_archive.svg │ │ │ │ │ │ │ ├── project_rebuild.svg │ │ │ │ │ │ │ ├── project_remove.svg │ │ │ │ │ │ │ ├── project_show.svg │ │ │ │ │ │ │ ├── projectgrep.svg │ │ │ │ │ │ │ ├── ps2pdf.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ │ ├── quick.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── quickwizard.svg │ │ │ │ │ │ │ ├── rabbitvcs-about.svg │ │ │ │ │ │ │ ├── rabbitvcs-add.svg │ │ │ │ │ │ │ ├── rabbitvcs-applypatch.svg │ │ │ │ │ │ │ ├── rabbitvcs-bug.svg │ │ │ │ │ │ │ ├── rabbitvcs-changes.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkmods.svg │ │ │ │ │ │ │ ├── rabbitvcs-checkout.svg │ │ │ │ │ │ │ ├── rabbitvcs-commit.svg │ │ │ │ │ │ │ ├── rabbitvcs-dbus.svg │ │ │ │ │ │ │ ├── rabbitvcs-delete.svg │ │ │ │ │ │ │ ├── rabbitvcs-editconflicts.svg │ │ │ │ │ │ │ ├── rabbitvcs-emblems.svg │ │ │ │ │ │ │ ├── rabbitvcs-export.svg │ │ │ │ │ │ │ ├── rabbitvcs-import.svg │ │ │ │ │ │ │ ├── rabbitvcs-lock.svg │ │ │ │ │ │ │ ├── rabbitvcs-properties.svg │ │ │ │ │ │ │ ├── rabbitvcs-push.svg │ │ │ │ │ │ │ ├── rabbitvcs-refresh.svg │ │ │ │ │ │ │ ├── rabbitvcs-relocate.svg │ │ │ │ │ │ │ ├── rabbitvcs-reset.svg │ │ │ │ │ │ │ ├── rabbitvcs-run.svg │ │ │ │ │ │ │ ├── rabbitvcs-settings.svg │ │ │ │ │ │ │ ├── rabbitvcs-show_log.svg │ │ │ │ │ │ │ ├── rabbitvcs-stop.svg │ │ │ │ │ │ │ ├── rabbitvcs-switch.svg │ │ │ │ │ │ │ ├── rabbitvcs-unlock.svg │ │ │ │ │ │ │ ├── rabbitvcs-unstage.svg │ │ │ │ │ │ │ ├── rabbitvcs-update.svg │ │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ │ ├── randomize.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── realization.svg │ │ │ │ │ │ │ ├── rectangle-shape.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── refactor.svg │ │ │ │ │ │ │ ├── refreshstructure.svg │ │ │ │ │ │ │ ├── region.svg │ │ │ │ │ │ │ ├── relation.svg │ │ │ │ │ │ │ ├── relationship.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── removecell.svg │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── reverse.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── routeplanning.svg │ │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── scriptnew.svg │ │ │ │ │ │ │ ├── scriptopen.svg │ │ │ │ │ │ │ ├── search-icon.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── selection.svg │ │ │ │ │ │ │ ├── send_signal.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── set-language.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── settings.svg │ │ │ │ │ │ │ ├── shallow-history.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── show-all-effects.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-gpu-effects.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-node-handles.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── show-path-outline.svg │ │ │ │ │ │ │ ├── show_table_column.svg │ │ │ │ │ │ │ ├── show_table_row.svg │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ ├── sidebar-places.svg │ │ │ │ │ │ │ ├── sidebar.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── skg-chart-bubble.svg │ │ │ │ │ │ │ ├── skrooge_credit_card.svg │ │ │ │ │ │ │ ├── skrooge_less.svg │ │ │ │ │ │ │ ├── skrooge_more.svg │ │ │ │ │ │ │ ├── skrooge_much_less.svg │ │ │ │ │ │ │ ├── skrooge_much_more.svg │ │ │ │ │ │ │ ├── skrooge_type.svg │ │ │ │ │ │ │ ├── slanted.svg │ │ │ │ │ │ │ ├── slideshow-plugin.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── smallfrac.svg │ │ │ │ │ │ │ ├── smallskip.svg │ │ │ │ │ │ │ ├── smartnewline.svg │ │ │ │ │ │ │ ├── smiley-add.svg │ │ │ │ │ │ │ ├── smiley-shape.svg │ │ │ │ │ │ │ ├── smiley.svg │ │ │ │ │ │ │ ├── smooth.svg │ │ │ │ │ │ │ ├── snap-angle.svg │ │ │ │ │ │ │ ├── snap-bounding-box-center.svg │ │ │ │ │ │ │ ├── snap-bounding-box-corners.svg │ │ │ │ │ │ │ ├── snap-bounding-box-edges.svg │ │ │ │ │ │ │ ├── snap-bounding-box-midpoints.svg │ │ │ │ │ │ │ ├── snap-bounding-box.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-grid-guide-intersections.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-center.svg │ │ │ │ │ │ │ ├── snap-nodes-cusp.svg │ │ │ │ │ │ │ ├── snap-nodes-intersection.svg │ │ │ │ │ │ │ ├── snap-nodes-midpoint.svg │ │ │ │ │ │ │ ├── snap-nodes-path.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-nodes-smooth.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── snap-page.svg │ │ │ │ │ │ │ ├── snap-text-baseline.svg │ │ │ │ │ │ │ ├── snap.svg │ │ │ │ │ │ │ ├── social.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── sort_incr.svg │ │ │ │ │ │ │ ├── soundkonverter-replaygain.svg │ │ │ │ │ │ │ ├── spacefm-find.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── special_paste.svg │ │ │ │ │ │ │ ├── specific-setup.svg │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ ├── spiral-shape.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── spreadsheetshape.svg │ │ │ │ │ │ │ ├── sqrt.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star-shape.svg │ │ │ │ │ │ │ ├── start-over.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── state-fork.svg │ │ │ │ │ │ │ ├── stateshape.svg │ │ │ │ │ │ │ ├── statetool.svg │ │ │ │ │ │ │ ├── step_object_Anchor.svg │ │ │ │ │ │ │ ├── step_object_Box.svg │ │ │ │ │ │ │ ├── step_object_ChargedParticle.svg │ │ │ │ │ │ │ ├── step_object_CircularMotor.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── step_object_CoulombForce.svg │ │ │ │ │ │ │ ├── step_object_Disk.svg │ │ │ │ │ │ │ ├── step_object_Gas.svg │ │ │ │ │ │ │ ├── step_object_GasParticle.svg │ │ │ │ │ │ │ ├── step_object_Graph.svg │ │ │ │ │ │ │ ├── step_object_GravitationForce.svg │ │ │ │ │ │ │ ├── step_object_LinearMotor.svg │ │ │ │ │ │ │ ├── step_object_Meter.svg │ │ │ │ │ │ │ ├── step_object_Note.svg │ │ │ │ │ │ │ ├── step_object_Particle.svg │ │ │ │ │ │ │ ├── step_object_Pin.svg │ │ │ │ │ │ │ ├── step_object_Polygon.svg │ │ │ │ │ │ │ ├── step_object_Rope.svg │ │ │ │ │ │ │ ├── step_object_SoftBody.svg │ │ │ │ │ │ │ ├── step_object_Spring.svg │ │ │ │ │ │ │ ├── step_object_Stick.svg │ │ │ │ │ │ │ ├── step_object_Tracer.svg │ │ │ │ │ │ │ ├── step_object_WeightForce.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_check-filled.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_contact-list.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder_properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_gtk-dnd-multiple.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_insert-rule.svg │ │ │ │ │ │ │ ├── stock_insert-table.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup-done.svg │ │ │ │ │ │ │ ├── stock_mail-flag-for-followup.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-address-book.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_score-high.svg │ │ │ │ │ │ │ ├── stock_score-higher.svg │ │ │ │ │ │ │ ├── stock_score-highest.svg │ │ │ │ │ │ │ ├── stock_score-low.svg │ │ │ │ │ │ │ ├── stock_score-lower.svg │ │ │ │ │ │ │ ├── stock_score-lowest.svg │ │ │ │ │ │ │ ├── stock_score-normal.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_select-column.svg │ │ │ │ │ │ │ ├── stock_select-row.svg │ │ │ │ │ │ │ ├── stock_shared-by-me.svg │ │ │ │ │ │ │ ├── stock_shared-to-me.svg │ │ │ │ │ │ │ ├── stock_show-all.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_task-assigned-to.svg │ │ │ │ │ │ │ ├── stock_task-assigned.svg │ │ │ │ │ │ │ ├── stock_task-recurring.svg │ │ │ │ │ │ │ ├── stock_task.svg │ │ │ │ │ │ │ ├── stock_thunar-shortcuts.svg │ │ │ │ │ │ │ ├── stock_timezone.svg │ │ │ │ │ │ │ ├── stock_todo.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_volume.svg │ │ │ │ │ │ │ ├── stock_xfburn-data-copy.svg │ │ │ │ │ │ │ ├── stock_xfburn-format-dvdrw.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── stroke-to-path.svg │ │ │ │ │ │ │ ├── strong.svg │ │ │ │ │ │ │ ├── structure.svg │ │ │ │ │ │ │ ├── subsystem.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── swap-panels.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-save-session.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab.svg │ │ │ │ │ │ │ ├── tab_duplicate.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tap-extract-to.svg │ │ │ │ │ │ │ ├── tap-extract.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── template.svg │ │ │ │ │ │ │ ├── texcompiler.svg │ │ │ │ │ │ │ ├── texlion.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-flow-into-frame.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-orientation-auto.svg │ │ │ │ │ │ │ ├── text-orientation-sideways.svg │ │ │ │ │ │ │ ├── text-orientation-upright.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text-unflow.svg │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ ├── text_horz_kern.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_remove_kerns.svg │ │ │ │ │ │ │ ├── text_rotation.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── text_vert_kern.svg │ │ │ │ │ │ │ ├── text_word_spacing.svg │ │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ │ ├── timeline-extract.svg │ │ │ │ │ │ │ ├── timeline-insert.svg │ │ │ │ │ │ │ ├── timeline-lift.svg │ │ │ │ │ │ │ ├── timeline-overwrite.svg │ │ │ │ │ │ │ ├── timeline-use-zone-off.svg │ │ │ │ │ │ │ ├── timeline-use-zone-on.svg │ │ │ │ │ │ │ ├── tiny-pause.svg │ │ │ │ │ │ │ ├── tiny-start.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ │ ├── tool-text.svg │ │ │ │ │ │ │ ├── tool-tweak.svg │ │ │ │ │ │ │ ├── tool_brush.svg │ │ │ │ │ │ │ ├── tool_cellformatting.svg │ │ │ │ │ │ │ ├── tool_color_eraser.svg │ │ │ │ │ │ │ ├── tool_color_picker.svg │ │ │ │ │ │ │ ├── tool_curve.svg │ │ │ │ │ │ │ ├── tool_ellipse.svg │ │ │ │ │ │ │ ├── tool_elliptical_selection.svg │ │ │ │ │ │ │ ├── tool_eraser.svg │ │ │ │ │ │ │ ├── tool_flood_fill.svg │ │ │ │ │ │ │ ├── tool_free_form_selection.svg │ │ │ │ │ │ │ ├── tool_imageeffects.svg │ │ │ │ │ │ │ ├── tool_line.svg │ │ │ │ │ │ │ ├── tool_pagelayout.svg │ │ │ │ │ │ │ ├── tool_pen.svg │ │ │ │ │ │ │ ├── tool_polygon.svg │ │ │ │ │ │ │ ├── tool_polyline.svg │ │ │ │ │ │ │ ├── tool_rect_selection.svg │ │ │ │ │ │ │ ├── tool_rectangle.svg │ │ │ │ │ │ │ ├── tool_references.svg │ │ │ │ │ │ │ ├── tool_review.svg │ │ │ │ │ │ │ ├── tool_rounded_rectangle.svg │ │ │ │ │ │ │ ├── tool_spraycan.svg │ │ │ │ │ │ │ ├── tool_text.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── torrents.svg │ │ │ │ │ │ │ ├── transform-browse.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move-horizontal.svg │ │ │ │ │ │ │ ├── transform-move-vertical.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-horizontal.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale-vertical.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── transsearch.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── typewriter.svg │ │ │ │ │ │ │ ├── umbr-coll-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-coll-message-synchronous.svg │ │ │ │ │ │ │ ├── umbr-message-asynchronous.svg │ │ │ │ │ │ │ ├── umbr-message-found.svg │ │ │ │ │ │ │ ├── umbr-message-lost.svg │ │ │ │ │ │ │ ├── umbr-message-synchronous.svg │ │ │ │ │ │ │ ├── umbrello_diagram_activity.svg │ │ │ │ │ │ │ ├── umbrello_diagram_class.svg │ │ │ │ │ │ │ ├── umbrello_diagram_collaboration.svg │ │ │ │ │ │ │ ├── umbrello_diagram_component.svg │ │ │ │ │ │ │ ├── umbrello_diagram_deployment.svg │ │ │ │ │ │ │ ├── umbrello_diagram_entityrelationship.svg │ │ │ │ │ │ │ ├── umbrello_diagram_sequence.svg │ │ │ │ │ │ │ ├── umbrello_diagram_state.svg │ │ │ │ │ │ │ ├── umbrello_diagram_usecase.svg │ │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── uniassociation.svg │ │ │ │ │ │ │ ├── unique_constraint.svg │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ ├── unmarkasblank.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── usecase.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-others.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── user.svg │ │ │ │ │ │ │ ├── username-copy.svg │ │ │ │ │ │ │ ├── vcs-commit-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-diff-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-remove-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-status-cvs-cervisia.svg │ │ │ │ │ │ │ ├── vcs-update-cvs-cervisia.svg │ │ │ │ │ │ │ ├── verb.svg │ │ │ │ │ │ │ ├── verbatim.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories-expenditures.svg │ │ │ │ │ │ │ ├── view-categories-incomes.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-hidden.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-media-album-cover.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-chart.svg │ │ │ │ │ │ │ ├── view-media-config.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-favorite.svg │ │ │ │ │ │ │ ├── view-media-genre.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playcount.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-publisher.svg │ │ │ │ │ │ │ ├── view-media-recent.svg │ │ │ │ │ │ │ ├── view-media-similarartists.svg │ │ │ │ │ │ │ ├── view-media-title.svg │ │ │ │ │ │ │ ├── view-media-track.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pages-continuous.svg │ │ │ │ │ │ │ ├── view-pages-facing-first-centered.svg │ │ │ │ │ │ │ ├── view-pages-facing.svg │ │ │ │ │ │ │ ├── view-pages-overview.svg │ │ │ │ │ │ │ ├── view-pages-single.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── view-split-effect.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-unsplit-effect.svg │ │ │ │ │ │ │ ├── view-visible.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_fit_to_page.svg │ │ │ │ │ │ │ ├── viewbib.svg │ │ │ │ │ │ │ ├── viewdvi.svg │ │ │ │ │ │ │ ├── viewhtml.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewlog.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── viewpdf.svg │ │ │ │ │ │ │ ├── viewps.svg │ │ │ │ │ │ │ ├── virtual-desktops.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── wallet-closed.svg │ │ │ │ │ │ │ ├── wallet-open.svg │ │ │ │ │ │ │ ├── warnnext.svg │ │ │ │ │ │ │ ├── warnprev.svg │ │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ │ ├── widget-alternatives.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-keep-above.svg │ │ │ │ │ │ │ ├── window-keep-below.svg │ │ │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-pin.svg │ │ │ │ │ │ │ ├── window-restore.svg │ │ │ │ │ │ │ ├── window-shade.svg │ │ │ │ │ │ │ ├── window-unpin.svg │ │ │ │ │ │ │ ├── window-unshade.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── wizard_math.svg │ │ │ │ │ │ │ ├── wizard_pdftools.svg │ │ │ │ │ │ │ ├── wizard_pstools.svg │ │ │ │ │ │ │ ├── wizard_tabular.svg │ │ │ │ │ │ │ ├── x-clementine-album.svg │ │ │ │ │ │ │ ├── x-clementine-albums.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ │ ├── zone-in.svg │ │ │ │ │ │ │ ├── zone-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-center-page.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-pixels.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-syncing.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-syncing.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-synchronizing.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ └── vcs-normal.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-lock.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ └── xfsm-shutdown.svg │ │ │ │ │ ├── 32@2x │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── arrow.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-remove.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ │ │ ├── collapse.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── cursor-cross.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-replace.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-reset.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── editor.svg │ │ │ │ │ │ │ ├── expand-all.svg │ │ │ │ │ │ │ ├── expand.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── flash.svg │ │ │ │ │ │ │ ├── flashlight-off.svg │ │ │ │ │ │ │ ├── flashlight-on.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── gnumeric-format-halign-distributed.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-bottom.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-center.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-distributed.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-justify.svg │ │ │ │ │ │ │ ├── gnumeric-format-valign-top.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-skip.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-next-skip.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-skip.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-skip.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help-whatsthis.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── labplot-cursor-arrow.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-in-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-out-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-x.svg │ │ │ │ │ │ │ ├── labplot-zoom-select-y.svg │ │ │ │ │ │ │ ├── labplot-zoom-select.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-deleted.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-message.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-queued.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-thread-watch.svg │ │ │ │ │ │ │ ├── mail-unread-new.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-normal.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-all.svg │ │ │ │ │ │ │ ├── media-repeat-none.svg │ │ │ │ │ │ │ ├── media-repeat-single.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── multiple.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── output_win.svg │ │ │ │ │ │ │ ├── overflow-menu.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ │ ├── preview.svg │ │ │ │ │ │ │ ├── qa.svg │ │ │ │ │ │ │ ├── select.svg │ │ │ │ │ │ │ ├── settings-configure.svg │ │ │ │ │ │ │ ├── step_object_Controller.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-users.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ ├── trim-margins.svg │ │ │ │ │ │ │ ├── trim-to-selection.svg │ │ │ │ │ │ │ ├── view-barcode-qr.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-institution.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-sort-ascending-name.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending-name.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-sort.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-in-large.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-large.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── weather-clear-night.svg │ │ │ │ │ │ │ ├── weather-clear.svg │ │ │ │ │ │ │ ├── weather-clouds-night.svg │ │ │ │ │ │ │ ├── weather-clouds.svg │ │ │ │ │ │ │ ├── weather-few-clouds-night.svg │ │ │ │ │ │ │ ├── weather-few-clouds.svg │ │ │ │ │ │ │ ├── weather-many-clouds.svg │ │ │ │ │ │ │ ├── weather-showers-scattered.svg │ │ │ │ │ │ │ ├── weather-showers.svg │ │ │ │ │ │ │ ├── weather-storm.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 48@2x │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── xfsm-reboot.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 64@2x │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ │ ├── gtk-missing-image.svg │ │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ │ ├── image-missing.svg │ │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── weather-clear-night.svg │ │ │ │ │ │ │ ├── weather-clear.svg │ │ │ │ │ │ │ ├── weather-clouds-night.svg │ │ │ │ │ │ │ ├── weather-clouds.svg │ │ │ │ │ │ │ ├── weather-few-clouds-night.svg │ │ │ │ │ │ │ ├── weather-few-clouds.svg │ │ │ │ │ │ │ ├── weather-many-clouds.svg │ │ │ │ │ │ │ ├── weather-overcast.svg │ │ │ │ │ │ │ ├── weather-showers-scattered.svg │ │ │ │ │ │ │ ├── weather-showers.svg │ │ │ │ │ │ │ ├── weather-storm-day.svg │ │ │ │ │ │ │ ├── weather-storm-night.svg │ │ │ │ │ │ │ ├── weather-storm.svg │ │ │ │ │ │ │ ├── xfsm-logout.svg │ │ │ │ │ │ │ ├── xfsm-shutdown.svg │ │ │ │ │ │ │ ├── xfsm-switch-user.svg │ │ │ │ │ │ │ └── xfsm-switch.svg │ │ │ │ │ ├── 8@2x │ │ │ │ │ │ └── emblems │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-dropbox-unsyncable.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-insync-error-shared.svg │ │ │ │ │ │ │ ├── emblem-insync-error.svg │ │ │ │ │ │ │ ├── emblem-link.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-rabbitvcs-eerror.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ └── vcs-added.svg │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.theme │ │ │ │ │ ├── symbolic │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── action-unavailable-symbolic.svg │ │ │ │ │ │ │ ├── add-files-to-archive-symbolic.svg │ │ │ │ │ │ │ ├── address-book-new-symbolic.svg │ │ │ │ │ │ │ ├── align-horizontal-center-symbolic.svg │ │ │ │ │ │ │ ├── align-horizontal-left-symbolic.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor-symbolic.svg │ │ │ │ │ │ │ ├── align-horizontal-right-symbolic.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor-symbolic.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-symbolic.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor-symbolic.svg │ │ │ │ │ │ │ ├── align-vertical-center-symbolic.svg │ │ │ │ │ │ │ ├── align-vertical-top-symbolic.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor-symbolic.svg │ │ │ │ │ │ │ ├── app-installed-symbolic.svg │ │ │ │ │ │ │ ├── app-remove-symbolic.svg │ │ │ │ │ │ │ ├── application-add-symbolic.svg │ │ │ │ │ │ │ ├── application-exit-symbolic.svg │ │ │ │ │ │ │ ├── application-menu-symbolic.svg │ │ │ │ │ │ │ ├── appointment-new-symbolic.svg │ │ │ │ │ │ │ ├── appointment-symbolic.svg │ │ │ │ │ │ │ ├── archive-symbolic.svg │ │ │ │ │ │ │ ├── bookmark-add-symbolic.svg │ │ │ │ │ │ │ ├── bookmark-new-symbolic.svg │ │ │ │ │ │ │ ├── brisk_system-log-out-symbolic.svg │ │ │ │ │ │ │ ├── browser-download-symbolic.svg │ │ │ │ │ │ │ ├── ca.desrt.dconf-editor.big-rows-symbolic.svg │ │ │ │ │ │ │ ├── ca.desrt.dconf-editor.small-rows-symbolic.svg │ │ │ │ │ │ │ ├── calendar-go-today-symbolic.svg │ │ │ │ │ │ │ ├── call-end-symbolic.svg │ │ │ │ │ │ │ ├── call-start-symbolic.svg │ │ │ │ │ │ │ ├── call-stop-symbolic.svg │ │ │ │ │ │ │ ├── call-voicemail-symbolic.svg │ │ │ │ │ │ │ ├── camera-switch-symbolic.svg │ │ │ │ │ │ │ ├── caps-lock-off-symbolic.svg │ │ │ │ │ │ │ ├── caps-lock-symbolic.svg │ │ │ │ │ │ │ ├── carousel-arrow-previous-symbolic.svg │ │ │ │ │ │ │ ├── category-search-symbolic.svg │ │ │ │ │ │ │ ├── change-date-symbolic.svg │ │ │ │ │ │ │ ├── chat-message-new-symbolic.svg │ │ │ │ │ │ │ ├── chat-none-symbolic.svg │ │ │ │ │ │ │ ├── chat-symbolic.svg │ │ │ │ │ │ │ ├── cigarette-none-symbolic.svg │ │ │ │ │ │ │ ├── cigarette-symbolic.svg │ │ │ │ │ │ │ ├── cinnamon-caps-lock-off-symbolic.svg │ │ │ │ │ │ │ ├── cinnamon-caps-lock-symbolic.svg │ │ │ │ │ │ │ ├── cinnamon-num-lock-off-symbolic.svg │ │ │ │ │ │ │ ├── cinnamon-num-lock-symbolic.svg │ │ │ │ │ │ │ ├── close-symbolic.svg │ │ │ │ │ │ │ ├── collapse-all-symbolic.svg │ │ │ │ │ │ │ ├── color-profile-symbolic.svg │ │ │ │ │ │ │ ├── color-select-symbolic.svg │ │ │ │ │ │ │ ├── comment-symbolic.svg │ │ │ │ │ │ │ ├── contact-new-symbolic.svg │ │ │ │ │ │ │ ├── content-loading-symbolic.svg │ │ │ │ │ │ │ ├── desktop-symbolic.svg │ │ │ │ │ │ │ ├── detach-symbolic.svg │ │ │ │ │ │ │ ├── dino-double-tick-symbolic.svg │ │ │ │ │ │ │ ├── dino-tick-symbolic.svg │ │ │ │ │ │ │ ├── display-symbolic.svg │ │ │ │ │ │ │ ├── document-edit-symbolic.svg │ │ │ │ │ │ │ ├── document-export-symbolic-rtl.svg │ │ │ │ │ │ │ ├── document-export-symbolic.svg │ │ │ │ │ │ │ ├── document-import-symbolic-rtl.svg │ │ │ │ │ │ │ ├── document-import-symbolic.svg │ │ │ │ │ │ │ ├── document-new-symbolic.svg │ │ │ │ │ │ │ ├── document-open-recent-symbolic.svg │ │ │ │ │ │ │ ├── document-open-symbolic.svg │ │ │ │ │ │ │ ├── document-page-setup-symbolic.svg │ │ │ │ │ │ │ ├── document-print-preview-symbolic.svg │ │ │ │ │ │ │ ├── document-print-symbolic.svg │ │ │ │ │ │ │ ├── document-properties-symbolic.svg │ │ │ │ │ │ │ ├── document-revert-rtl-symbolic.svg │ │ │ │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ │ │ │ ├── document-revert-symbolic.svg │ │ │ │ │ │ │ ├── document-save-as-symbolic.svg │ │ │ │ │ │ │ ├── document-save-symbolic.svg │ │ │ │ │ │ │ ├── document-send-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-symbolic-rtl.svg │ │ │ │ │ │ │ ├── edit-clear-symbolic.svg │ │ │ │ │ │ │ ├── edit-copy-symbolic.svg │ │ │ │ │ │ │ ├── edit-cut-symbolic.svg │ │ │ │ │ │ │ ├── edit-delete-symbolic.svg │ │ │ │ │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ │ │ │ │ ├── edit-find-symbolic.svg │ │ │ │ │ │ │ ├── edit-flag-symbolic.svg │ │ │ │ │ │ │ ├── edit-paste-symbolic.svg │ │ │ │ │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-redo-symbolic-rtl.svg │ │ │ │ │ │ │ ├── edit-redo-symbolic.svg │ │ │ │ │ │ │ ├── edit-select-all-symbolic.svg │ │ │ │ │ │ │ ├── edit-select-symbolic.svg │ │ │ │ │ │ │ ├── edit-symbolic.svg │ │ │ │ │ │ │ ├── edit-tag-symbolic.svg │ │ │ │ │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-undo-symbolic-rtl.svg │ │ │ │ │ │ │ ├── edit-undo-symbolic.svg │ │ │ │ │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ │ │ │ │ ├── ephy-bookmark-tag-symbolic.svg │ │ │ │ │ │ │ ├── ephy-bookmarks-symbolic.svg │ │ │ │ │ │ │ ├── ephy-reader-mode-symbolic.svg │ │ │ │ │ │ │ ├── error-correct-symbolic.svg │ │ │ │ │ │ │ ├── expand-all-symbolic.svg │ │ │ │ │ │ │ ├── explore2-symbolic.svg │ │ │ │ │ │ │ ├── export-symbolic.svg │ │ │ │ │ │ │ ├── extension-symbolic.svg │ │ │ │ │ │ │ ├── external-link-symbolic.svg │ │ │ │ │ │ │ ├── extract-archive-symbolic.svg │ │ │ │ │ │ │ ├── eye-not-looking-symbolic.svg │ │ │ │ │ │ │ ├── eye-open-negative-filled-symbolic.svg │ │ │ │ │ │ │ ├── favorite-new-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-fullwidth-active-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-fullwidth-inactive-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-kbd-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-punc-active-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-punc-inactive-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-vk-active-symbolic.svg │ │ │ │ │ │ │ ├── fcitx-vk-inactive-symbolic.svg │ │ │ │ │ │ │ ├── file-catalog-symbolic.svg │ │ │ │ │ │ │ ├── file-library-symbolic.svg │ │ │ │ │ │ │ ├── file-search-symbolic.svg │ │ │ │ │ │ │ ├── filter-symbolic.svg │ │ │ │ │ │ │ ├── find-location-symbolic.svg │ │ │ │ │ │ │ ├── flag-outline-thin-symbolic.svg │ │ │ │ │ │ │ ├── flag-symbolic.svg │ │ │ │ │ │ │ ├── focus-legacy-systray-symbolic.svg │ │ │ │ │ │ │ ├── focus-top-bar-symbolic.svg │ │ │ │ │ │ │ ├── focus-windows-symbolic.svg │ │ │ │ │ │ │ ├── folder-new-symbolic.svg │ │ │ │ │ │ │ ├── font-color-symbolic.svg │ │ │ │ │ │ │ ├── font-select-symbolic.svg │ │ │ │ │ │ │ ├── font-size-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-less-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-indent-less-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-more-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-indent-more-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-center-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-left-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-right-symbolic.svg │ │ │ │ │ │ │ ├── format-ordered-list-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-ordered-list-symbolic.svg │ │ │ │ │ │ │ ├── format-text-bold-es-symbolic.svg │ │ │ │ │ │ │ ├── format-text-bold-fr-symbolic.svg │ │ │ │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ │ │ │ ├── format-text-clear-formatting-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-symbolic.svg │ │ │ │ │ │ │ ├── format-text-italic-es-symbolic.svg │ │ │ │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ │ │ │ ├── format-text-larger-symbolic.svg │ │ │ │ │ │ │ ├── format-text-remove-formatting-symbolic.svg │ │ │ │ │ │ │ ├── format-text-remove-symbolic.svg │ │ │ │ │ │ │ ├── format-text-smaller-symbolic.svg │ │ │ │ │ │ │ ├── format-text-strikethrough-fr-symbolic.svg │ │ │ │ │ │ │ ├── format-text-strikethrough-symbolic.svg │ │ │ │ │ │ │ ├── format-text-underline-fr-symbolic.svg │ │ │ │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ │ │ │ ├── format-toolbar-toggle-symbolic.svg │ │ │ │ │ │ │ ├── format-unordered-list-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-unordered-list-symbolic.svg │ │ │ │ │ │ │ ├── forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── forward-symbolic.svg │ │ │ │ │ │ │ ├── globe-symbolic.svg │ │ │ │ │ │ │ ├── go-bottom-symbolic.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-first-symbolic.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-jump-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-jump-symbolic.svg │ │ │ │ │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-last-symbolic.svg │ │ │ │ │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-top-symbolic.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── graveyard-symbolic.svg │ │ │ │ │ │ │ ├── gtk-about-symbolic.svg │ │ │ │ │ │ │ ├── heart-filled-symbolic.svg │ │ │ │ │ │ │ ├── help-about-symbolic.svg │ │ │ │ │ │ │ ├── help-contents-symbolic.svg │ │ │ │ │ │ │ ├── help-info-symbolic.svg │ │ │ │ │ │ │ ├── histogram-symbolic.svg │ │ │ │ │ │ │ ├── image-crop-symbolic.svg │ │ │ │ │ │ │ ├── image-denoise-symbolic.svg │ │ │ │ │ │ │ ├── image-filter-symbolic.svg │ │ │ │ │ │ │ ├── image-flip-horizontal-symbolic.svg │ │ │ │ │ │ │ ├── image-flip-vertical-symbolic.svg │ │ │ │ │ │ │ ├── image-invert-symbolic.svg │ │ │ │ │ │ │ ├── image-navigator-symbolic.svg │ │ │ │ │ │ │ ├── image-red-eye-symbolic.svg │ │ │ │ │ │ │ ├── image-resize-symbolic.svg │ │ │ │ │ │ │ ├── image-rotate-left-symbolic.svg │ │ │ │ │ │ │ ├── image-rotate-right-symbolic.svg │ │ │ │ │ │ │ ├── image-rotate-symbolic.svg │ │ │ │ │ │ │ ├── image-sharpen-symbolic.svg │ │ │ │ │ │ │ ├── image-straighten-symbolic.svg │ │ │ │ │ │ │ ├── inbox-symbolic.svg │ │ │ │ │ │ │ ├── insert-emoticon-symbolic.svg │ │ │ │ │ │ │ ├── insert-image-symbolic.svg │ │ │ │ │ │ │ ├── insert-link-symbolic.svg │ │ │ │ │ │ │ ├── insert-object-symbolic.svg │ │ │ │ │ │ │ ├── insert-text-symbolic.svg │ │ │ │ │ │ │ ├── keyboard-caps-lock-filled-symbolic.svg │ │ │ │ │ │ │ ├── keyboard-enter-symbolic.svg │ │ │ │ │ │ │ ├── keyboard-hide-symbolic.svg │ │ │ │ │ │ │ ├── keyboard-layout-filled-symbolic.svg │ │ │ │ │ │ │ ├── keyboard-shift-filled-symbolic.svg │ │ │ │ │ │ │ ├── link-symbolic.svg │ │ │ │ │ │ │ ├── list-add-symbolic.svg │ │ │ │ │ │ │ ├── list-edit-symbolic.svg │ │ │ │ │ │ │ ├── list-remove-all-symbolic.svg │ │ │ │ │ │ │ ├── list-remove-symbolic.svg │ │ │ │ │ │ │ ├── location-symbolic.svg │ │ │ │ │ │ │ ├── mail-archive-symbolic.svg │ │ │ │ │ │ │ ├── mail-attachment-symbolic.svg │ │ │ │ │ │ │ ├── mail-drafts-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-drafts-symbolic.svg │ │ │ │ │ │ │ ├── mail-flag-symbolic.svg │ │ │ │ │ │ │ ├── mail-forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── mail-forward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-forward-symbolic.svg │ │ │ │ │ │ │ ├── mail-inbox-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-junk-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-read-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-unread-symbolic.svg │ │ │ │ │ │ │ ├── mail-message-new-symbolic.svg │ │ │ │ │ │ │ ├── mail-move-symbolic.svg │ │ │ │ │ │ │ ├── mail-outbox-symbolic.svg │ │ │ │ │ │ │ ├── mail-reply-all-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-reply-all-symbolic.svg │ │ │ │ │ │ │ ├── mail-reply-rtl-symbolic.svg │ │ │ │ │ │ │ ├── mail-reply-sender-rtl-symbolic.svg │ │ │ │ │ │ │ ├── mail-reply-sender-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-reply-sender-symbolic.svg │ │ │ │ │ │ │ ├── mail-reply-symbolic.svg │ │ │ │ │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ │ │ │ │ ├── mail-send-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-send-symbolic.svg │ │ │ │ │ │ │ ├── mail-sent-symbolic-rtl.svg │ │ │ │ │ │ │ ├── mail-sent-symbolic.svg │ │ │ │ │ │ │ ├── mail-spam-symbolic.svg │ │ │ │ │ │ │ ├── map-symbolic.svg │ │ │ │ │ │ │ ├── mark-location-symbolic.svg │ │ │ │ │ │ │ ├── marker-symbolic.svg │ │ │ │ │ │ │ ├── media-eject-symbolic.svg │ │ │ │ │ │ │ ├── media-eq-symbolic.svg │ │ │ │ │ │ │ ├── media-mount-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-play-pause-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-start-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playback-start-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-no-repeat-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-once-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-one-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ │ │ │ │ ├── media-record-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-skip-forward-symbolic.svg │ │ │ │ │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ │ │ │ │ ├── message-indicator-symbolic.svg │ │ │ │ │ │ │ ├── money-none-symbolic.svg │ │ │ │ │ │ │ ├── money-symbolic.svg │ │ │ │ │ │ │ ├── mount-archive-symbolic.svg │ │ │ │ │ │ │ ├── multimedia-equalizer-symbolic.svg │ │ │ │ │ │ │ ├── nemo-auto-arrange-symbolic.svg │ │ │ │ │ │ │ ├── nemo-desktop-scale-symbolic.svg │ │ │ │ │ │ │ ├── nemo-horizontal-layout-symbolic.svg │ │ │ │ │ │ │ ├── nemo-horizontal-layout-wide-symbolic.svg │ │ │ │ │ │ │ ├── nemo-recursive-search-symbolic.svg │ │ │ │ │ │ │ ├── nemo-vertical-layout-symbolic.svg │ │ │ │ │ │ │ ├── nemo-vertical-layout-wide-symbolic.svg │ │ │ │ │ │ │ ├── new-star-symbolic.svg │ │ │ │ │ │ │ ├── non-starred-symbolic.svg │ │ │ │ │ │ │ ├── notification-alert-symbolic.svg │ │ │ │ │ │ │ ├── nudity-none-symbolic.svg │ │ │ │ │ │ │ ├── nudity-symbolic.svg │ │ │ │ │ │ │ ├── num-lock-off-symbolic.svg │ │ │ │ │ │ │ ├── num-lock-symbolic.svg │ │ │ │ │ │ │ ├── object-flip-horizontal-symbolic.svg │ │ │ │ │ │ │ ├── object-flip-vertical-symbolic.svg │ │ │ │ │ │ │ ├── object-group-symbolic.svg │ │ │ │ │ │ │ ├── object-inverse-symbolic.svg │ │ │ │ │ │ │ ├── object-merge-symbolic.svg │ │ │ │ │ │ │ ├── object-move-symbolic.svg │ │ │ │ │ │ │ ├── object-rotate-left-symbolic.svg │ │ │ │ │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ │ │ │ │ ├── object-select-symbolic.svg │ │ │ │ │ │ │ ├── object-straighten-symbolic.svg │ │ │ │ │ │ │ ├── object-ungroup-symbolic.svg │ │ │ │ │ │ │ ├── open-menu-symbolic.svg │ │ │ │ │ │ │ ├── outbox-symbolic.svg │ │ │ │ │ │ │ ├── padlock-open-symbolic.svg │ │ │ │ │ │ │ ├── palette-symbolic.svg │ │ │ │ │ │ │ ├── pan-down-symbolic.svg │ │ │ │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pan-end-symbolic.svg │ │ │ │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pan-start-symbolic.svg │ │ │ │ │ │ │ ├── pan-up-symbolic.svg │ │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pane-hide-symbolic.svg │ │ │ │ │ │ │ ├── pane-show-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pane-show-symbolic.svg │ │ │ │ │ │ │ ├── path-break-apart-symbolic.svg │ │ │ │ │ │ │ ├── path-combine-symbolic.svg │ │ │ │ │ │ │ ├── path-difference-symbolic.svg │ │ │ │ │ │ │ ├── path-division-symbolic.svg │ │ │ │ │ │ │ ├── path-exclusion-symbolic.svg │ │ │ │ │ │ │ ├── path-intersection-symbolic.svg │ │ │ │ │ │ │ ├── path-union-symbolic.svg │ │ │ │ │ │ │ ├── phonelink-ring-symbolic.svg │ │ │ │ │ │ │ ├── pin-symbolic.svg │ │ │ │ │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ │ │ │ │ ├── pointer-drag-symbolic.svg │ │ │ │ │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ │ │ │ │ ├── pointer-secondary-click-symbolic.svg │ │ │ │ │ │ │ ├── process-stop-symbolic.svg │ │ │ │ │ │ │ ├── pub-symbolic.svg │ │ │ │ │ │ │ ├── qrscanner-symbolic.svg │ │ │ │ │ │ │ ├── reply-all-rtl-symbolic.svg │ │ │ │ │ │ │ ├── reply-all-symbolic-rtl.svg │ │ │ │ │ │ │ ├── reply-all-symbolic.svg │ │ │ │ │ │ │ ├── reply-rtl-symbolic.svg │ │ │ │ │ │ │ ├── reply-symbolic.svg │ │ │ │ │ │ │ ├── safety-symbolic.svg │ │ │ │ │ │ │ ├── scan-type-adf-symbolic.svg │ │ │ │ │ │ │ ├── scan-type-batch-symbolic.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-off-symbolic.svg │ │ │ │ │ │ │ ├── screen-rotate-auto-on-symbolic.svg │ │ │ │ │ │ │ ├── screensaver-switch-users-symbolic.svg │ │ │ │ │ │ │ ├── screensaver-unlock-symbolic.svg │ │ │ │ │ │ │ ├── search-symbolic.svg │ │ │ │ │ │ │ ├── selection-bottom-symbolic.svg │ │ │ │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ │ │ │ ├── selection-end-symbolic.svg │ │ │ │ │ │ │ ├── selection-lower-symbolic.svg │ │ │ │ │ │ │ ├── selection-raise-symbolic.svg │ │ │ │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── selection-start-symbolic.svg │ │ │ │ │ │ │ ├── selection-symbolic.svg │ │ │ │ │ │ │ ├── selection-top-symbolic.svg │ │ │ │ │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ │ │ │ │ ├── semi-starred-symbolic.svg │ │ │ │ │ │ │ ├── send-to-symbolic.svg │ │ │ │ │ │ │ ├── sidebar-hide-symbolic.svg │ │ │ │ │ │ │ ├── sidebar-places-symbolic.svg │ │ │ │ │ │ │ ├── sidebar-show-symbolic.svg │ │ │ │ │ │ │ ├── sidebar-tree-symbolic.svg │ │ │ │ │ │ │ ├── sign-language-symbolic.svg │ │ │ │ │ │ │ ├── sms-symbolic.svg │ │ │ │ │ │ │ ├── spam-symbolic.svg │ │ │ │ │ │ │ ├── special-effects-symbolic.svg │ │ │ │ │ │ │ ├── star-new-symbolic.svg │ │ │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ │ │ ├── stopwatch-symbolic.svg │ │ │ │ │ │ │ ├── strong-language-none-symbolic.svg │ │ │ │ │ │ │ ├── strong-language-symbolic.svg │ │ │ │ │ │ │ ├── system-hibernate-symbolic.svg │ │ │ │ │ │ │ ├── system-lock-screen-symbolic.svg │ │ │ │ │ │ │ ├── system-log-out-symbolic.svg │ │ │ │ │ │ │ ├── system-reboot-symbolic.svg │ │ │ │ │ │ │ ├── system-restart-symbolic.svg │ │ │ │ │ │ │ ├── system-run-symbolic.svg │ │ │ │ │ │ │ ├── system-search-symbolic.svg │ │ │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ │ │ ├── system-suspend-symbolic.svg │ │ │ │ │ │ │ ├── system-switch-user-symbolic.svg │ │ │ │ │ │ │ ├── tab-new-symbolic.svg │ │ │ │ │ │ │ ├── tag-new-symbolic.svg │ │ │ │ │ │ │ ├── tag-symbolic-rtl.svg │ │ │ │ │ │ │ ├── tag-symbolic.svg │ │ │ │ │ │ │ ├── test-pass-symbolic.svg │ │ │ │ │ │ │ ├── timer-symbolic.svg │ │ │ │ │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ │ │ │ │ ├── tools-symbolic.svg │ │ │ │ │ │ │ ├── tools-timer-symbolic.svg │ │ │ │ │ │ │ ├── twitter-dm-symbolic.svg │ │ │ │ │ │ │ ├── twitter-home-symbolic.svg │ │ │ │ │ │ │ ├── twitter-mentions-symbolic.svg │ │ │ │ │ │ │ ├── twitter-profile-symbolic.svg │ │ │ │ │ │ │ ├── unpin-symbolic.svg │ │ │ │ │ │ │ ├── value-decrease-symbolic.svg │ │ │ │ │ │ │ ├── value-increase-symbolic.svg │ │ │ │ │ │ │ ├── view-app-grid-symbolic.svg │ │ │ │ │ │ │ ├── view-bottom-pane-symbolic.svg │ │ │ │ │ │ │ ├── view-column-symbolic.svg │ │ │ │ │ │ │ ├── view-compact-symbolic.svg │ │ │ │ │ │ │ ├── view-conceal-symbolic.svg │ │ │ │ │ │ │ ├── view-continuous-symbolic.svg │ │ │ │ │ │ │ ├── view-coverflow-symbolic.svg │ │ │ │ │ │ │ ├── view-dual-symbolic.svg │ │ │ │ │ │ │ ├── view-filter-rtl-symbolic.svg │ │ │ │ │ │ │ ├── view-filter-symbolic-rtl.svg │ │ │ │ │ │ │ ├── view-filter-symbolic.svg │ │ │ │ │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ │ │ │ │ ├── view-grid-symbolic.svg │ │ │ │ │ │ │ ├── view-left-pane-symbolic-rtl.svg │ │ │ │ │ │ │ ├── view-left-pane-symbolic.svg │ │ │ │ │ │ │ ├── view-list-bullet-symbolic.svg │ │ │ │ │ │ │ ├── view-list-compact-symbolic.svg │ │ │ │ │ │ │ ├── view-list-images-symbolic.svg │ │ │ │ │ │ │ ├── view-list-ordered-symbolic.svg │ │ │ │ │ │ │ ├── view-list-symbolic.svg │ │ │ │ │ │ │ ├── view-list-video-symbolic.svg │ │ │ │ │ │ │ ├── view-mirror-symbolic.svg │ │ │ │ │ │ │ ├── view-more-horizontal-symbolic.svg │ │ │ │ │ │ │ ├── view-more-symbolic.svg │ │ │ │ │ │ │ ├── view-paged-symbolic.svg │ │ │ │ │ │ │ ├── view-pin-symbolic.svg │ │ │ │ │ │ │ ├── view-presentation-symbolic.svg │ │ │ │ │ │ │ ├── view-private-symbolic.svg │ │ │ │ │ │ │ ├── view-refresh-symbolic.svg │ │ │ │ │ │ │ ├── view-restore-symbolic.svg │ │ │ │ │ │ │ ├── view-reveal-symbolic.svg │ │ │ │ │ │ │ ├── view-right-pane-symbolic-rtl.svg │ │ │ │ │ │ │ ├── view-right-pane-symbolic.svg │ │ │ │ │ │ │ ├── view-sidebar-end-symbolic.svg │ │ │ │ │ │ │ ├── view-sidebar-start-symbolic.svg │ │ │ │ │ │ │ ├── view-sidebar-symbolic.svg │ │ │ │ │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ │ │ │ │ ├── view-sort-descending-symbolic.svg │ │ │ │ │ │ │ ├── view-top-pane-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-fit-height-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-fit-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-fit-width-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-in-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-original-symbolic.svg │ │ │ │ │ │ │ ├── view-zoom-out-symbolic.svg │ │ │ │ │ │ │ ├── violence-none-symbolic.svg │ │ │ │ │ │ │ ├── violence-symbolic.svg │ │ │ │ │ │ │ ├── window-close-symbolic.svg │ │ │ │ │ │ │ ├── window-keep-above-symbolic.svg │ │ │ │ │ │ │ ├── window-keep-below-symbolic.svg │ │ │ │ │ │ │ ├── window-maximize-symbolic-rtl.svg │ │ │ │ │ │ │ ├── window-maximize-symbolic.svg │ │ │ │ │ │ │ ├── window-minimize-symbolic.svg │ │ │ │ │ │ │ ├── window-new-symbolic.svg │ │ │ │ │ │ │ ├── window-pin-symbolic.svg │ │ │ │ │ │ │ ├── window-pop-out-symbolic.svg │ │ │ │ │ │ │ ├── window-restore-symbolic-rtl.svg │ │ │ │ │ │ │ ├── window-restore-symbolic.svg │ │ │ │ │ │ │ ├── window-shade-symbolic.svg │ │ │ │ │ │ │ ├── window-symbolic.svg │ │ │ │ │ │ │ ├── window-unpin-symbolic.svg │ │ │ │ │ │ │ ├── window-unshade-symbolic.svg │ │ │ │ │ │ │ ├── xapp-annotations-squiggly-symbolic.svg │ │ │ │ │ │ │ ├── xapp-annotations-text-symbolic.svg │ │ │ │ │ │ │ ├── xapp-diaporama-symbolic.svg │ │ │ │ │ │ │ ├── xapp-favorite-symbolic.svg │ │ │ │ │ │ │ ├── xapp-format-text-highlight-symbolic.svg │ │ │ │ │ │ │ ├── xapp-go-history-next-symbolic-rtl.svg │ │ │ │ │ │ │ ├── xapp-go-history-next-symbolic.svg │ │ │ │ │ │ │ ├── xapp-go-history-previous-symbolic-rtl.svg │ │ │ │ │ │ │ ├── xapp-go-history-previous-symbolic.svg │ │ │ │ │ │ │ ├── xapp-pin-symbolic.svg │ │ │ │ │ │ │ ├── xapp-search-entire-word-symbolic.svg │ │ │ │ │ │ │ ├── xapp-search-wrap-symbolic.svg │ │ │ │ │ │ │ ├── xapp-text-case-symbolic.svg │ │ │ │ │ │ │ ├── xapp-unfavorite-symbolic.svg │ │ │ │ │ │ │ ├── xapp-unpin-symbolic.svg │ │ │ │ │ │ │ ├── xapp-use-regex-symbolic.svg │ │ │ │ │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ │ │ │ │ ├── zoom-in-symbolic.svg │ │ │ │ │ │ │ ├── zoom-original-symbolic.svg │ │ │ │ │ │ │ └── zoom-out-symbolic.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ │ ├── emblem-documents-symbolic.svg │ │ │ │ │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ │ │ │ │ ├── emblem-music-symbolic.svg │ │ │ │ │ │ │ ├── emblem-ok-symbolic.svg │ │ │ │ │ │ │ ├── emblem-photos-symbolic.svg │ │ │ │ │ │ │ └── emblem-system-symbolic.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ │ │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ │ │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ │ │ │ │ ├── audio-volume-muted-blocking-symbolic.svg │ │ │ │ │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ │ │ │ │ ├── audio-volume-overamplified-symbolic.svg │ │ │ │ │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-caution-symbolic.svg │ │ │ │ │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-empty-symbolic.svg │ │ │ │ │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ │ │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-full-symbolic.svg │ │ │ │ │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-good-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-0-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-0-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-10-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-10-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-100-charged-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-100-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-100-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-20-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-20-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-30-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-30-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-40-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-40-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-50-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-50-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-60-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-60-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-70-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-70-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-80-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-80-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-90-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-level-90-symbolic.svg │ │ │ │ │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-low-symbolic.svg │ │ │ │ │ │ │ ├── battery-medium-charging-symbolic.svg │ │ │ │ │ │ │ ├── battery-medium-symbolic.svg │ │ │ │ │ │ │ ├── blueberry-tray-active-symbolic.svg │ │ │ │ │ │ │ ├── blueberry-tray-disabled-symbolic.svg │ │ │ │ │ │ │ ├── blueberry-tray-symbolic.svg │ │ │ │ │ │ │ ├── blueman-active-symbolic.svg │ │ │ │ │ │ │ ├── blueman-disabled-symbolic.svg │ │ │ │ │ │ │ ├── blueman-symbolic.svg │ │ │ │ │ │ │ ├── blueman-tray-symbolic.svg │ │ │ │ │ │ │ ├── bluetooth-active-symbolic.svg │ │ │ │ │ │ │ ├── bluetooth-disabled-symbolic.svg │ │ │ │ │ │ │ ├── bluetooth-disconnected-symbolic.svg │ │ │ │ │ │ │ ├── bluetooth-hardware-disabled-symbolic.svg │ │ │ │ │ │ │ ├── bluetooth-paired-symbolic.svg │ │ │ │ │ │ │ ├── empty-notif-symbolic.svg │ │ │ │ │ │ │ ├── ephy-audio-muted-symbolic.svg │ │ │ │ │ │ │ ├── ephy-audio-playing-symbolic.svg │ │ │ │ │ │ │ ├── mpi-symbolic.svg │ │ │ │ │ │ │ ├── network-unavailable-symbolic.svg │ │ │ │ │ │ │ ├── network-wired-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-excellent-secure-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-good-secure-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-good-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-none-secure-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-none-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-ok-secure-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-weak-secure-symbolic.svg │ │ │ │ │ │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ │ │ │ │ │ ├── normal-notif-symbolic.svg │ │ │ │ │ │ │ ├── notification-alert-symbolic.svg │ │ │ │ │ │ │ ├── notification-disabled-new-symbolic.svg │ │ │ │ │ │ │ ├── notification-new-symbolic.svg │ │ │ │ │ │ │ ├── notification-symbolic.svg │ │ │ │ │ │ │ ├── notifications-applet-symbolic.svg │ │ │ │ │ │ │ ├── notifications-new-symbolic.svg │ │ │ │ │ │ │ ├── notifications-symbolic.svg │ │ │ │ │ │ │ ├── redshift-status-off-symbolic.svg │ │ │ │ │ │ │ ├── redshift-status-on-symbolic.svg │ │ │ │ │ │ │ └── start-here-symbolic.svg │ │ │ │ │ └── symbolic@2x │ │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── action-unavailable-symbolic.svg │ │ │ │ │ │ ├── add-files-to-archive-symbolic.svg │ │ │ │ │ │ ├── address-book-new-symbolic.svg │ │ │ │ │ │ ├── align-horizontal-center-symbolic.svg │ │ │ │ │ │ ├── align-horizontal-left-symbolic.svg │ │ │ │ │ │ ├── align-horizontal-left-to-anchor-symbolic.svg │ │ │ │ │ │ ├── align-horizontal-right-symbolic.svg │ │ │ │ │ │ ├── align-horizontal-right-to-anchor-symbolic.svg │ │ │ │ │ │ ├── align-vertical-bottom-symbolic.svg │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor-symbolic.svg │ │ │ │ │ │ ├── align-vertical-center-symbolic.svg │ │ │ │ │ │ ├── align-vertical-top-symbolic.svg │ │ │ │ │ │ ├── align-vertical-top-to-anchor-symbolic.svg │ │ │ │ │ │ ├── app-installed-symbolic.svg │ │ │ │ │ │ ├── app-remove-symbolic.svg │ │ │ │ │ │ ├── application-add-symbolic.svg │ │ │ │ │ │ ├── application-exit-symbolic.svg │ │ │ │ │ │ ├── application-menu-symbolic.svg │ │ │ │ │ │ ├── appointment-new-symbolic.svg │ │ │ │ │ │ ├── appointment-symbolic.svg │ │ │ │ │ │ ├── archive-symbolic.svg │ │ │ │ │ │ ├── bookmark-add-symbolic.svg │ │ │ │ │ │ ├── bookmark-new-symbolic.svg │ │ │ │ │ │ ├── brisk_system-log-out-symbolic.svg │ │ │ │ │ │ ├── browser-download-symbolic.svg │ │ │ │ │ │ ├── ca.desrt.dconf-editor.big-rows-symbolic.svg │ │ │ │ │ │ ├── ca.desrt.dconf-editor.small-rows-symbolic.svg │ │ │ │ │ │ ├── calendar-go-today-symbolic.svg │ │ │ │ │ │ ├── call-end-symbolic.svg │ │ │ │ │ │ ├── call-start-symbolic.svg │ │ │ │ │ │ ├── call-stop-symbolic.svg │ │ │ │ │ │ ├── call-voicemail-symbolic.svg │ │ │ │ │ │ ├── camera-switch-symbolic.svg │ │ │ │ │ │ ├── caps-lock-off-symbolic.svg │ │ │ │ │ │ ├── caps-lock-symbolic.svg │ │ │ │ │ │ ├── carousel-arrow-previous-symbolic.svg │ │ │ │ │ │ ├── category-search-symbolic.svg │ │ │ │ │ │ ├── change-date-symbolic.svg │ │ │ │ │ │ ├── chat-message-new-symbolic.svg │ │ │ │ │ │ ├── chat-none-symbolic.svg │ │ │ │ │ │ ├── chat-symbolic.svg │ │ │ │ │ │ ├── cigarette-none-symbolic.svg │ │ │ │ │ │ ├── cigarette-symbolic.svg │ │ │ │ │ │ ├── cinnamon-caps-lock-off-symbolic.svg │ │ │ │ │ │ ├── cinnamon-caps-lock-symbolic.svg │ │ │ │ │ │ ├── cinnamon-num-lock-off-symbolic.svg │ │ │ │ │ │ ├── cinnamon-num-lock-symbolic.svg │ │ │ │ │ │ ├── close-symbolic.svg │ │ │ │ │ │ ├── collapse-all-symbolic.svg │ │ │ │ │ │ ├── color-profile-symbolic.svg │ │ │ │ │ │ ├── color-select-symbolic.svg │ │ │ │ │ │ ├── comment-symbolic.svg │ │ │ │ │ │ ├── contact-new-symbolic.svg │ │ │ │ │ │ ├── content-loading-symbolic.svg │ │ │ │ │ │ ├── desktop-symbolic.svg │ │ │ │ │ │ ├── detach-symbolic.svg │ │ │ │ │ │ ├── dino-double-tick-symbolic.svg │ │ │ │ │ │ ├── dino-tick-symbolic.svg │ │ │ │ │ │ ├── display-symbolic.svg │ │ │ │ │ │ ├── document-edit-symbolic.svg │ │ │ │ │ │ ├── document-export-symbolic-rtl.svg │ │ │ │ │ │ ├── document-export-symbolic.svg │ │ │ │ │ │ ├── document-import-symbolic-rtl.svg │ │ │ │ │ │ ├── document-import-symbolic.svg │ │ │ │ │ │ ├── document-new-symbolic.svg │ │ │ │ │ │ ├── document-open-recent-symbolic.svg │ │ │ │ │ │ ├── document-open-symbolic.svg │ │ │ │ │ │ ├── document-page-setup-symbolic.svg │ │ │ │ │ │ ├── document-print-preview-symbolic.svg │ │ │ │ │ │ ├── document-print-symbolic.svg │ │ │ │ │ │ ├── document-properties-symbolic.svg │ │ │ │ │ │ ├── document-revert-rtl-symbolic.svg │ │ │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ │ │ ├── document-revert-symbolic.svg │ │ │ │ │ │ ├── document-save-as-symbolic.svg │ │ │ │ │ │ ├── document-save-symbolic.svg │ │ │ │ │ │ ├── document-send-symbolic.svg │ │ │ │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ │ │ │ ├── edit-clear-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-clear-symbolic-rtl.svg │ │ │ │ │ │ ├── edit-clear-symbolic.svg │ │ │ │ │ │ ├── edit-copy-symbolic.svg │ │ │ │ │ │ ├── edit-cut-symbolic.svg │ │ │ │ │ │ ├── edit-delete-symbolic.svg │ │ │ │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ │ │ │ ├── edit-find-symbolic.svg │ │ │ │ │ │ ├── edit-flag-symbolic.svg │ │ │ │ │ │ ├── edit-paste-symbolic.svg │ │ │ │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-redo-symbolic-rtl.svg │ │ │ │ │ │ ├── edit-redo-symbolic.svg │ │ │ │ │ │ ├── edit-select-all-symbolic.svg │ │ │ │ │ │ ├── edit-select-symbolic.svg │ │ │ │ │ │ ├── edit-symbolic.svg │ │ │ │ │ │ ├── edit-tag-symbolic.svg │ │ │ │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-undo-symbolic-rtl.svg │ │ │ │ │ │ ├── edit-undo-symbolic.svg │ │ │ │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ │ │ │ ├── ephy-bookmark-tag-symbolic.svg │ │ │ │ │ │ ├── ephy-bookmarks-symbolic.svg │ │ │ │ │ │ ├── ephy-reader-mode-symbolic.svg │ │ │ │ │ │ ├── error-correct-symbolic.svg │ │ │ │ │ │ ├── expand-all-symbolic.svg │ │ │ │ │ │ ├── explore2-symbolic.svg │ │ │ │ │ │ ├── export-symbolic.svg │ │ │ │ │ │ ├── extension-symbolic.svg │ │ │ │ │ │ ├── external-link-symbolic.svg │ │ │ │ │ │ ├── extract-archive-symbolic.svg │ │ │ │ │ │ ├── eye-not-looking-symbolic.svg │ │ │ │ │ │ ├── eye-open-negative-filled-symbolic.svg │ │ │ │ │ │ ├── favorite-new-symbolic.svg │ │ │ │ │ │ ├── fcitx-fullwidth-active-symbolic.svg │ │ │ │ │ │ ├── fcitx-fullwidth-inactive-symbolic.svg │ │ │ │ │ │ ├── fcitx-kbd-symbolic.svg │ │ │ │ │ │ ├── fcitx-punc-active-symbolic.svg │ │ │ │ │ │ ├── fcitx-punc-inactive-symbolic.svg │ │ │ │ │ │ ├── fcitx-vk-active-symbolic.svg │ │ │ │ │ │ ├── fcitx-vk-inactive-symbolic.svg │ │ │ │ │ │ ├── file-catalog-symbolic.svg │ │ │ │ │ │ ├── file-library-symbolic.svg │ │ │ │ │ │ ├── file-search-symbolic.svg │ │ │ │ │ │ ├── filter-symbolic.svg │ │ │ │ │ │ ├── find-location-symbolic.svg │ │ │ │ │ │ ├── flag-outline-thin-symbolic.svg │ │ │ │ │ │ ├── flag-symbolic.svg │ │ │ │ │ │ ├── focus-legacy-systray-symbolic.svg │ │ │ │ │ │ ├── focus-top-bar-symbolic.svg │ │ │ │ │ │ ├── focus-windows-symbolic.svg │ │ │ │ │ │ ├── folder-new-symbolic.svg │ │ │ │ │ │ ├── font-color-symbolic.svg │ │ │ │ │ │ ├── font-select-symbolic.svg │ │ │ │ │ │ ├── font-size-symbolic.svg │ │ │ │ │ │ ├── format-indent-less-rtl-symbolic.svg │ │ │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ │ │ ├── format-indent-less-symbolic.svg │ │ │ │ │ │ ├── format-indent-more-rtl-symbolic.svg │ │ │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ │ │ ├── format-indent-more-symbolic.svg │ │ │ │ │ │ ├── format-justify-center-symbolic.svg │ │ │ │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ │ │ │ ├── format-justify-left-symbolic.svg │ │ │ │ │ │ ├── format-justify-right-symbolic.svg │ │ │ │ │ │ ├── format-ordered-list-symbolic-rtl.svg │ │ │ │ │ │ ├── format-ordered-list-symbolic.svg │ │ │ │ │ │ ├── format-text-bold-es-symbolic.svg │ │ │ │ │ │ ├── format-text-bold-fr-symbolic.svg │ │ │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ │ │ ├── format-text-clear-formatting-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ │ │ ├── format-text-direction-symbolic.svg │ │ │ │ │ │ ├── format-text-italic-es-symbolic.svg │ │ │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ │ │ ├── format-text-larger-symbolic.svg │ │ │ │ │ │ ├── format-text-remove-formatting-symbolic.svg │ │ │ │ │ │ ├── format-text-remove-symbolic.svg │ │ │ │ │ │ ├── format-text-smaller-symbolic.svg │ │ │ │ │ │ ├── format-text-strikethrough-fr-symbolic.svg │ │ │ │ │ │ ├── format-text-strikethrough-symbolic.svg │ │ │ │ │ │ ├── format-text-underline-fr-symbolic.svg │ │ │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ │ │ ├── format-toolbar-toggle-symbolic.svg │ │ │ │ │ │ ├── format-unordered-list-symbolic-rtl.svg │ │ │ │ │ │ ├── format-unordered-list-symbolic.svg │ │ │ │ │ │ ├── forward-rtl-symbolic.svg │ │ │ │ │ │ ├── forward-symbolic.svg │ │ │ │ │ │ ├── globe-symbolic.svg │ │ │ │ │ │ ├── go-bottom-symbolic.svg │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ │ │ ├── go-first-symbolic.svg │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ │ │ │ ├── go-jump-symbolic-rtl.svg │ │ │ │ │ │ ├── go-jump-symbolic.svg │ │ │ │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ │ │ ├── go-last-symbolic.svg │ │ │ │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ ├── go-top-symbolic.svg │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ ├── graveyard-symbolic.svg │ │ │ │ │ │ ├── gtk-about-symbolic.svg │ │ │ │ │ │ ├── heart-filled-symbolic.svg │ │ │ │ │ │ ├── help-about-symbolic.svg │ │ │ │ │ │ ├── help-contents-symbolic.svg │ │ │ │ │ │ ├── help-info-symbolic.svg │ │ │ │ │ │ ├── histogram-symbolic.svg │ │ │ │ │ │ ├── image-crop-symbolic.svg │ │ │ │ │ │ ├── image-denoise-symbolic.svg │ │ │ │ │ │ ├── image-filter-symbolic.svg │ │ │ │ │ │ ├── image-flip-horizontal-symbolic.svg │ │ │ │ │ │ ├── image-flip-vertical-symbolic.svg │ │ │ │ │ │ ├── image-invert-symbolic.svg │ │ │ │ │ │ ├── image-navigator-symbolic.svg │ │ │ │ │ │ ├── image-red-eye-symbolic.svg │ │ │ │ │ │ ├── image-resize-symbolic.svg │ │ │ │ │ │ ├── image-rotate-left-symbolic.svg │ │ │ │ │ │ ├── image-rotate-right-symbolic.svg │ │ │ │ │ │ ├── image-rotate-symbolic.svg │ │ │ │ │ │ ├── image-sharpen-symbolic.svg │ │ │ │ │ │ ├── image-straighten-symbolic.svg │ │ │ │ │ │ ├── inbox-symbolic.svg │ │ │ │ │ │ ├── insert-emoticon-symbolic.svg │ │ │ │ │ │ ├── insert-image-symbolic.svg │ │ │ │ │ │ ├── insert-link-symbolic.svg │ │ │ │ │ │ ├── insert-object-symbolic.svg │ │ │ │ │ │ ├── insert-text-symbolic.svg │ │ │ │ │ │ ├── keyboard-caps-lock-filled-symbolic.svg │ │ │ │ │ │ ├── keyboard-enter-symbolic.svg │ │ │ │ │ │ ├── keyboard-hide-symbolic.svg │ │ │ │ │ │ ├── keyboard-layout-filled-symbolic.svg │ │ │ │ │ │ ├── keyboard-shift-filled-symbolic.svg │ │ │ │ │ │ ├── link-symbolic.svg │ │ │ │ │ │ ├── list-add-symbolic.svg │ │ │ │ │ │ ├── list-edit-symbolic.svg │ │ │ │ │ │ ├── list-remove-all-symbolic.svg │ │ │ │ │ │ ├── list-remove-symbolic.svg │ │ │ │ │ │ ├── location-symbolic.svg │ │ │ │ │ │ ├── mail-archive-symbolic.svg │ │ │ │ │ │ ├── mail-attachment-symbolic.svg │ │ │ │ │ │ ├── mail-drafts-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-drafts-symbolic.svg │ │ │ │ │ │ ├── mail-flag-symbolic.svg │ │ │ │ │ │ ├── mail-forward-rtl-symbolic.svg │ │ │ │ │ │ ├── mail-forward-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-forward-symbolic.svg │ │ │ │ │ │ ├── mail-inbox-symbolic.svg │ │ │ │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ │ │ │ ├── mail-mark-junk-symbolic.svg │ │ │ │ │ │ ├── mail-mark-notjunk-symbolic.svg │ │ │ │ │ │ ├── mail-mark-read-symbolic.svg │ │ │ │ │ │ ├── mail-mark-unread-symbolic.svg │ │ │ │ │ │ ├── mail-message-new-symbolic.svg │ │ │ │ │ │ ├── mail-move-symbolic.svg │ │ │ │ │ │ ├── mail-outbox-symbolic.svg │ │ │ │ │ │ ├── mail-reply-all-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-reply-all-symbolic.svg │ │ │ │ │ │ ├── mail-reply-rtl-symbolic.svg │ │ │ │ │ │ ├── mail-reply-sender-rtl-symbolic.svg │ │ │ │ │ │ ├── mail-reply-sender-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-reply-sender-symbolic.svg │ │ │ │ │ │ ├── mail-reply-symbolic.svg │ │ │ │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ │ │ │ ├── mail-send-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-send-symbolic.svg │ │ │ │ │ │ ├── mail-sent-symbolic-rtl.svg │ │ │ │ │ │ ├── mail-sent-symbolic.svg │ │ │ │ │ │ ├── mail-spam-symbolic.svg │ │ │ │ │ │ ├── map-symbolic.svg │ │ │ │ │ │ ├── mark-location-symbolic.svg │ │ │ │ │ │ ├── marker-symbolic.svg │ │ │ │ │ │ ├── media-eject-symbolic.svg │ │ │ │ │ │ ├── media-eq-symbolic.svg │ │ │ │ │ │ ├── media-mount-symbolic.svg │ │ │ │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ │ │ │ ├── media-playback-play-pause-symbolic.svg │ │ │ │ │ │ ├── media-playback-start-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playback-start-symbolic.svg │ │ │ │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ │ │ │ ├── media-playlist-no-repeat-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-once-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-one-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ │ │ │ ├── media-record-symbolic.svg │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-skip-forward-symbolic.svg │ │ │ │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ │ │ │ ├── message-indicator-symbolic.svg │ │ │ │ │ │ ├── money-none-symbolic.svg │ │ │ │ │ │ ├── money-symbolic.svg │ │ │ │ │ │ ├── mount-archive-symbolic.svg │ │ │ │ │ │ ├── multimedia-equalizer-symbolic.svg │ │ │ │ │ │ ├── nemo-auto-arrange-symbolic.svg │ │ │ │ │ │ ├── nemo-desktop-scale-symbolic.svg │ │ │ │ │ │ ├── nemo-horizontal-layout-symbolic.svg │ │ │ │ │ │ ├── nemo-horizontal-layout-wide-symbolic.svg │ │ │ │ │ │ ├── nemo-recursive-search-symbolic.svg │ │ │ │ │ │ ├── nemo-vertical-layout-symbolic.svg │ │ │ │ │ │ ├── nemo-vertical-layout-wide-symbolic.svg │ │ │ │ │ │ ├── new-star-symbolic.svg │ │ │ │ │ │ ├── non-starred-symbolic.svg │ │ │ │ │ │ ├── notification-alert-symbolic.svg │ │ │ │ │ │ ├── nudity-none-symbolic.svg │ │ │ │ │ │ ├── nudity-symbolic.svg │ │ │ │ │ │ ├── num-lock-off-symbolic.svg │ │ │ │ │ │ ├── num-lock-symbolic.svg │ │ │ │ │ │ ├── object-flip-horizontal-symbolic.svg │ │ │ │ │ │ ├── object-flip-vertical-symbolic.svg │ │ │ │ │ │ ├── object-group-symbolic.svg │ │ │ │ │ │ ├── object-inverse-symbolic.svg │ │ │ │ │ │ ├── object-merge-symbolic.svg │ │ │ │ │ │ ├── object-move-symbolic.svg │ │ │ │ │ │ ├── object-rotate-left-symbolic.svg │ │ │ │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ │ │ │ ├── object-select-symbolic.svg │ │ │ │ │ │ ├── object-straighten-symbolic.svg │ │ │ │ │ │ ├── object-ungroup-symbolic.svg │ │ │ │ │ │ ├── open-menu-symbolic.svg │ │ │ │ │ │ ├── outbox-symbolic.svg │ │ │ │ │ │ ├── padlock-open-symbolic.svg │ │ │ │ │ │ ├── palette-symbolic.svg │ │ │ │ │ │ ├── pan-down-symbolic.svg │ │ │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ │ │ ├── pan-end-symbolic.svg │ │ │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ │ │ ├── pan-start-symbolic.svg │ │ │ │ │ │ ├── pan-up-symbolic.svg │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.svg │ │ │ │ │ │ ├── pane-hide-symbolic.svg │ │ │ │ │ │ ├── pane-show-symbolic-rtl.svg │ │ │ │ │ │ ├── pane-show-symbolic.svg │ │ │ │ │ │ ├── path-break-apart-symbolic.svg │ │ │ │ │ │ ├── path-combine-symbolic.svg │ │ │ │ │ │ ├── path-difference-symbolic.svg │ │ │ │ │ │ ├── path-division-symbolic.svg │ │ │ │ │ │ ├── path-exclusion-symbolic.svg │ │ │ │ │ │ ├── path-intersection-symbolic.svg │ │ │ │ │ │ ├── path-union-symbolic.svg │ │ │ │ │ │ ├── phonelink-ring-symbolic.svg │ │ │ │ │ │ ├── pin-symbolic.svg │ │ │ │ │ │ ├── pointer-double-click-symbolic.svg │ │ │ │ │ │ ├── pointer-drag-symbolic.svg │ │ │ │ │ │ ├── pointer-primary-click-symbolic.svg │ │ │ │ │ │ ├── pointer-secondary-click-symbolic.svg │ │ │ │ │ │ ├── process-stop-symbolic.svg │ │ │ │ │ │ ├── pub-symbolic.svg │ │ │ │ │ │ ├── qrscanner-symbolic.svg │ │ │ │ │ │ ├── reply-all-rtl-symbolic.svg │ │ │ │ │ │ ├── reply-all-symbolic-rtl.svg │ │ │ │ │ │ ├── reply-all-symbolic.svg │ │ │ │ │ │ ├── reply-rtl-symbolic.svg │ │ │ │ │ │ ├── reply-symbolic.svg │ │ │ │ │ │ ├── safety-symbolic.svg │ │ │ │ │ │ ├── scan-type-adf-symbolic.svg │ │ │ │ │ │ ├── scan-type-batch-symbolic.svg │ │ │ │ │ │ ├── screen-rotate-auto-off-symbolic.svg │ │ │ │ │ │ ├── screen-rotate-auto-on-symbolic.svg │ │ │ │ │ │ ├── screensaver-switch-users-symbolic.svg │ │ │ │ │ │ ├── screensaver-unlock-symbolic.svg │ │ │ │ │ │ ├── search-symbolic.svg │ │ │ │ │ │ ├── selection-bottom-symbolic.svg │ │ │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ │ │ ├── selection-end-symbolic.svg │ │ │ │ │ │ ├── selection-lower-symbolic.svg │ │ │ │ │ │ ├── selection-raise-symbolic.svg │ │ │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ │ │ ├── selection-start-symbolic.svg │ │ │ │ │ │ ├── selection-symbolic.svg │ │ │ │ │ │ ├── selection-top-symbolic.svg │ │ │ │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ │ │ │ ├── semi-starred-symbolic.svg │ │ │ │ │ │ ├── send-to-symbolic.svg │ │ │ │ │ │ ├── sidebar-hide-symbolic.svg │ │ │ │ │ │ ├── sidebar-places-symbolic.svg │ │ │ │ │ │ ├── sidebar-show-symbolic.svg │ │ │ │ │ │ ├── sidebar-tree-symbolic.svg │ │ │ │ │ │ ├── sign-language-symbolic.svg │ │ │ │ │ │ ├── sms-symbolic.svg │ │ │ │ │ │ ├── spam-symbolic.svg │ │ │ │ │ │ ├── special-effects-symbolic.svg │ │ │ │ │ │ ├── star-new-symbolic.svg │ │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ │ ├── stopwatch-symbolic.svg │ │ │ │ │ │ ├── strong-language-none-symbolic.svg │ │ │ │ │ │ ├── strong-language-symbolic.svg │ │ │ │ │ │ ├── system-hibernate-symbolic.svg │ │ │ │ │ │ ├── system-lock-screen-symbolic.svg │ │ │ │ │ │ ├── system-log-out-symbolic.svg │ │ │ │ │ │ ├── system-reboot-symbolic.svg │ │ │ │ │ │ ├── system-restart-symbolic.svg │ │ │ │ │ │ ├── system-run-symbolic.svg │ │ │ │ │ │ ├── system-search-symbolic.svg │ │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ │ ├── system-suspend-symbolic.svg │ │ │ │ │ │ ├── system-switch-user-symbolic.svg │ │ │ │ │ │ ├── tab-new-symbolic.svg │ │ │ │ │ │ ├── tag-new-symbolic.svg │ │ │ │ │ │ ├── tag-symbolic-rtl.svg │ │ │ │ │ │ ├── tag-symbolic.svg │ │ │ │ │ │ ├── test-pass-symbolic.svg │ │ │ │ │ │ ├── timer-symbolic.svg │ │ │ │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ │ │ │ ├── tools-symbolic.svg │ │ │ │ │ │ ├── tools-timer-symbolic.svg │ │ │ │ │ │ ├── twitter-dm-symbolic.svg │ │ │ │ │ │ ├── twitter-home-symbolic.svg │ │ │ │ │ │ ├── twitter-mentions-symbolic.svg │ │ │ │ │ │ ├── twitter-profile-symbolic.svg │ │ │ │ │ │ ├── unpin-symbolic.svg │ │ │ │ │ │ ├── value-decrease-symbolic.svg │ │ │ │ │ │ ├── value-increase-symbolic.svg │ │ │ │ │ │ ├── view-app-grid-symbolic.svg │ │ │ │ │ │ ├── view-bottom-pane-symbolic.svg │ │ │ │ │ │ ├── view-column-symbolic.svg │ │ │ │ │ │ ├── view-compact-symbolic.svg │ │ │ │ │ │ ├── view-conceal-symbolic.svg │ │ │ │ │ │ ├── view-continuous-symbolic.svg │ │ │ │ │ │ ├── view-coverflow-symbolic.svg │ │ │ │ │ │ ├── view-dual-symbolic.svg │ │ │ │ │ │ ├── view-filter-rtl-symbolic.svg │ │ │ │ │ │ ├── view-filter-symbolic-rtl.svg │ │ │ │ │ │ ├── view-filter-symbolic.svg │ │ │ │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ │ │ │ ├── view-grid-symbolic.svg │ │ │ │ │ │ ├── view-left-pane-symbolic-rtl.svg │ │ │ │ │ │ ├── view-left-pane-symbolic.svg │ │ │ │ │ │ ├── view-list-bullet-symbolic.svg │ │ │ │ │ │ ├── view-list-compact-symbolic.svg │ │ │ │ │ │ ├── view-list-images-symbolic.svg │ │ │ │ │ │ ├── view-list-ordered-symbolic.svg │ │ │ │ │ │ ├── view-list-symbolic.svg │ │ │ │ │ │ ├── view-list-video-symbolic.svg │ │ │ │ │ │ ├── view-mirror-symbolic.svg │ │ │ │ │ │ ├── view-more-horizontal-symbolic.svg │ │ │ │ │ │ ├── view-more-symbolic.svg │ │ │ │ │ │ ├── view-paged-symbolic.svg │ │ │ │ │ │ ├── view-pin-symbolic.svg │ │ │ │ │ │ ├── view-presentation-symbolic.svg │ │ │ │ │ │ ├── view-private-symbolic.svg │ │ │ │ │ │ ├── view-refresh-symbolic.svg │ │ │ │ │ │ ├── view-restore-symbolic.svg │ │ │ │ │ │ ├── view-reveal-symbolic.svg │ │ │ │ │ │ ├── view-right-pane-symbolic-rtl.svg │ │ │ │ │ │ ├── view-right-pane-symbolic.svg │ │ │ │ │ │ ├── view-sidebar-end-symbolic.svg │ │ │ │ │ │ ├── view-sidebar-start-symbolic.svg │ │ │ │ │ │ ├── view-sidebar-symbolic.svg │ │ │ │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ │ │ │ ├── view-sort-descending-symbolic.svg │ │ │ │ │ │ ├── view-top-pane-symbolic.svg │ │ │ │ │ │ ├── view-zoom-fit-height-symbolic.svg │ │ │ │ │ │ ├── view-zoom-fit-symbolic.svg │ │ │ │ │ │ ├── view-zoom-fit-width-symbolic.svg │ │ │ │ │ │ ├── view-zoom-in-symbolic.svg │ │ │ │ │ │ ├── view-zoom-original-symbolic.svg │ │ │ │ │ │ ├── view-zoom-out-symbolic.svg │ │ │ │ │ │ ├── violence-none-symbolic.svg │ │ │ │ │ │ ├── violence-symbolic.svg │ │ │ │ │ │ ├── window-close-symbolic.svg │ │ │ │ │ │ ├── window-keep-above-symbolic.svg │ │ │ │ │ │ ├── window-keep-below-symbolic.svg │ │ │ │ │ │ ├── window-maximize-symbolic-rtl.svg │ │ │ │ │ │ ├── window-maximize-symbolic.svg │ │ │ │ │ │ ├── window-minimize-symbolic.svg │ │ │ │ │ │ ├── window-new-symbolic.svg │ │ │ │ │ │ ├── window-pin-symbolic.svg │ │ │ │ │ │ ├── window-pop-out-symbolic.svg │ │ │ │ │ │ ├── window-restore-symbolic-rtl.svg │ │ │ │ │ │ ├── window-restore-symbolic.svg │ │ │ │ │ │ ├── window-shade-symbolic.svg │ │ │ │ │ │ ├── window-symbolic.svg │ │ │ │ │ │ ├── window-unpin-symbolic.svg │ │ │ │ │ │ ├── window-unshade-symbolic.svg │ │ │ │ │ │ ├── xapp-annotations-squiggly-symbolic.svg │ │ │ │ │ │ ├── xapp-annotations-text-symbolic.svg │ │ │ │ │ │ ├── xapp-diaporama-symbolic.svg │ │ │ │ │ │ ├── xapp-favorite-symbolic.svg │ │ │ │ │ │ ├── xapp-format-text-highlight-symbolic.svg │ │ │ │ │ │ ├── xapp-go-history-next-symbolic-rtl.svg │ │ │ │ │ │ ├── xapp-go-history-next-symbolic.svg │ │ │ │ │ │ ├── xapp-go-history-previous-symbolic-rtl.svg │ │ │ │ │ │ ├── xapp-go-history-previous-symbolic.svg │ │ │ │ │ │ ├── xapp-pin-symbolic.svg │ │ │ │ │ │ ├── xapp-search-entire-word-symbolic.svg │ │ │ │ │ │ ├── xapp-search-wrap-symbolic.svg │ │ │ │ │ │ ├── xapp-text-case-symbolic.svg │ │ │ │ │ │ ├── xapp-unfavorite-symbolic.svg │ │ │ │ │ │ ├── xapp-unpin-symbolic.svg │ │ │ │ │ │ ├── xapp-use-regex-symbolic.svg │ │ │ │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ │ │ │ ├── zoom-in-symbolic.svg │ │ │ │ │ │ ├── zoom-original-symbolic.svg │ │ │ │ │ │ └── zoom-out-symbolic.svg │ │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── emblem-documents-symbolic.svg │ │ │ │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ │ │ │ ├── emblem-music-symbolic.svg │ │ │ │ │ │ ├── emblem-ok-symbolic.svg │ │ │ │ │ │ ├── emblem-photos-symbolic.svg │ │ │ │ │ │ └── emblem-system-symbolic.svg │ │ │ │ │ │ └── status │ │ │ │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ │ │ │ ├── audio-volume-muted-blocking-symbolic.svg │ │ │ │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ │ │ │ ├── audio-volume-overamplified-symbolic.svg │ │ │ │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ │ │ │ ├── battery-caution-symbolic.svg │ │ │ │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ │ │ │ ├── battery-empty-symbolic.svg │ │ │ │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ │ │ │ ├── battery-full-symbolic.svg │ │ │ │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ │ │ │ ├── battery-good-symbolic.svg │ │ │ │ │ │ ├── battery-level-0-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-0-symbolic.svg │ │ │ │ │ │ ├── battery-level-10-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-10-symbolic.svg │ │ │ │ │ │ ├── battery-level-100-charged-symbolic.svg │ │ │ │ │ │ ├── battery-level-100-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-100-symbolic.svg │ │ │ │ │ │ ├── battery-level-20-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-20-symbolic.svg │ │ │ │ │ │ ├── battery-level-30-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-30-symbolic.svg │ │ │ │ │ │ ├── battery-level-40-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-40-symbolic.svg │ │ │ │ │ │ ├── battery-level-50-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-50-symbolic.svg │ │ │ │ │ │ ├── battery-level-60-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-60-symbolic.svg │ │ │ │ │ │ ├── battery-level-70-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-70-symbolic.svg │ │ │ │ │ │ ├── battery-level-80-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-80-symbolic.svg │ │ │ │ │ │ ├── battery-level-90-charging-symbolic.svg │ │ │ │ │ │ ├── battery-level-90-symbolic.svg │ │ │ │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ │ │ │ ├── battery-low-symbolic.svg │ │ │ │ │ │ ├── battery-medium-charging-symbolic.svg │ │ │ │ │ │ ├── battery-medium-symbolic.svg │ │ │ │ │ │ ├── blueberry-tray-active-symbolic.svg │ │ │ │ │ │ ├── blueberry-tray-disabled-symbolic.svg │ │ │ │ │ │ ├── blueberry-tray-symbolic.svg │ │ │ │ │ │ ├── blueman-active-symbolic.svg │ │ │ │ │ │ ├── blueman-disabled-symbolic.svg │ │ │ │ │ │ ├── blueman-symbolic.svg │ │ │ │ │ │ ├── blueman-tray-symbolic.svg │ │ │ │ │ │ ├── bluetooth-active-symbolic.svg │ │ │ │ │ │ ├── bluetooth-disabled-symbolic.svg │ │ │ │ │ │ ├── bluetooth-disconnected-symbolic.svg │ │ │ │ │ │ ├── bluetooth-hardware-disabled-symbolic.svg │ │ │ │ │ │ ├── bluetooth-paired-symbolic.svg │ │ │ │ │ │ ├── empty-notif-symbolic.svg │ │ │ │ │ │ ├── ephy-audio-muted-symbolic.svg │ │ │ │ │ │ ├── ephy-audio-playing-symbolic.svg │ │ │ │ │ │ ├── mpi-symbolic.svg │ │ │ │ │ │ ├── network-unavailable-symbolic.svg │ │ │ │ │ │ ├── network-wired-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-excellent-secure-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-good-secure-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-good-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-none-secure-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-none-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-ok-secure-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-weak-secure-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ │ │ │ │ ├── normal-notif-symbolic.svg │ │ │ │ │ │ ├── notification-alert-symbolic.svg │ │ │ │ │ │ ├── notification-disabled-new-symbolic.svg │ │ │ │ │ │ ├── notification-new-symbolic.svg │ │ │ │ │ │ ├── notification-symbolic.svg │ │ │ │ │ │ ├── notifications-applet-symbolic.svg │ │ │ │ │ │ ├── notifications-new-symbolic.svg │ │ │ │ │ │ ├── notifications-symbolic.svg │ │ │ │ │ │ ├── redshift-status-off-symbolic.svg │ │ │ │ │ │ ├── redshift-status-on-symbolic.svg │ │ │ │ │ │ └── start-here-symbolic.svg │ │ │ │ ├── La-Sierra-Dark │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── 22x22 │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── TeX_logo.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-insert.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook.svg │ │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── applications-other.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── appointment_new.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-top-double.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── audio-cd-duplicate.svg │ │ │ │ │ │ │ ├── audio-cd-new.svg │ │ │ │ │ │ │ ├── audio-off.svg │ │ │ │ │ │ │ ├── audio-on.svg │ │ │ │ │ │ │ ├── audio-ready.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── automated-tasks.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add.svg │ │ │ │ │ │ │ ├── bookmark-list-add.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark-view.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmark_list-add.svg │ │ │ │ │ │ │ ├── bookmark_list_add.svg │ │ │ │ │ │ │ ├── bookmarks-list-add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list-add.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── button-cancel.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── camera-off.svg │ │ │ │ │ │ │ ├── camera-on.svg │ │ │ │ │ │ │ ├── camera-ready.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── catfish.svg │ │ │ │ │ │ │ ├── cdplayer-eject.svg │ │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collection-refresh-amarok.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-fill-and-stroke.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-layers.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-rows-and-columns.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-text-and-font.svg │ │ │ │ │ │ │ ├── dialog-tile-clones.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export-local.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-local.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import-table.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-info.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-page-setup.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-duplicate.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-email.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste-style.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo-amarok.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-select-all-layers.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-amarok.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ │ ├── epiphany-bookmarks.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── epiphany-secure.svg │ │ │ │ │ │ │ ├── epiphany-unsecure.svg │ │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-find.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── file_new.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── filesaveas.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── finish.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flip-horizontal.svg │ │ │ │ │ │ │ ├── folder-copy.svg │ │ │ │ │ │ │ ├── folder-move.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── forward.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-fs-bookmark.svg │ │ │ │ │ │ │ ├── gnome-help.svg │ │ │ │ │ │ │ ├── gnome-run.svg │ │ │ │ │ │ │ ├── gnome-shutdown.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-rtl.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-rtl.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-rtl.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-info.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-jump-to-rtl.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-redo-ltr.svg │ │ │ │ │ │ │ ├── gtk-redo-rtl.svg │ │ │ │ │ │ │ ├── gtk-redo.ltr.svg │ │ │ │ │ │ │ ├── gtk-redo.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-all.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-search.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-sort-ascending.svg │ │ │ │ │ │ │ ├── gtk-sort-descending.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-undo-ltr.svg │ │ │ │ │ │ │ ├── gtk-undo-rtl.svg │ │ │ │ │ │ │ ├── gtk-undo.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-100.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── gtk-zoom-in.svg │ │ │ │ │ │ │ ├── gtk-zoom-out.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-faq.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── image-zoom-in.svg │ │ │ │ │ │ │ ├── image-zoom-out.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-pause.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── iso-image-burn.svg │ │ │ │ │ │ │ ├── iso-image-iso.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── jump-today.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ │ ├── kdenlive-track-has-effect.svg │ │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── kfm-home.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_close.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ │ ├── layer-bottom.svg │ │ │ │ │ │ │ ├── layer-delete.svg │ │ │ │ │ │ │ ├── layer-duplicate.svg │ │ │ │ │ │ │ ├── layer-lower.svg │ │ │ │ │ │ │ ├── layer-new.svg │ │ │ │ │ │ │ ├── layer-next.svg │ │ │ │ │ │ │ ├── layer-previous.svg │ │ │ │ │ │ │ ├── layer-raise.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-top.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── locationbar-erase.svg │ │ │ │ │ │ │ ├── lock-insecure.svg │ │ │ │ │ │ │ ├── lock-secure.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── locked.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-encrytped-full.svg │ │ │ │ │ │ │ ├── mail-encrytped-part.svg │ │ │ │ │ │ │ ├── mail-encrytped.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-folder-sent.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-not-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-new.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-reply.svg │ │ │ │ │ │ │ ├── mail-send-receive.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── mail_send.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-optical-audio-new.svg │ │ │ │ │ │ │ ├── media-optical-blank-symbolic.svg │ │ │ │ │ │ │ ├── media-optical-burn.svg │ │ │ │ │ │ │ ├── media-optical-copy.svg │ │ │ │ │ │ │ ├── media-optical-data-new.svg │ │ │ │ │ │ │ ├── media-optical-video-new.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-play-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-no-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-once.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-one.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-write-cd.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── mic-off.svg │ │ │ │ │ │ │ ├── mic-on.svg │ │ │ │ │ │ │ ├── mic-ready.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── mixer-digital.svg │ │ │ │ │ │ │ ├── mixer-line.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── music-library.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ │ ├── notebook-new.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── ok.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── path-break-apart.svg │ │ │ │ │ │ │ ├── path-combine.svg │ │ │ │ │ │ │ ├── path-cut.svg │ │ │ │ │ │ │ ├── path-difference.svg │ │ │ │ │ │ │ ├── path-division.svg │ │ │ │ │ │ │ ├── path-exclusion.svg │ │ │ │ │ │ │ ├── path-intersection.svg │ │ │ │ │ │ │ ├── path-union.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pixelart-trace.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-end.svg │ │ │ │ │ │ │ ├── player-fwd.svg │ │ │ │ │ │ │ ├── player-new.svg │ │ │ │ │ │ │ ├── player-pause.svg │ │ │ │ │ │ │ ├── player-play.svg │ │ │ │ │ │ │ ├── player-record.svg │ │ │ │ │ │ │ ├── player-rew.svg │ │ │ │ │ │ │ ├── player-start.svg │ │ │ │ │ │ │ ├── player-stop.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_new.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-other2.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── preview-file.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── ratio.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── redhat-home.svg │ │ │ │ │ │ │ ├── redo.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── retweet.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── rhythmbox-set-star.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── rotate.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-above.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-below.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── shift-down-y.svg │ │ │ │ │ │ │ ├── shift-left-x.svg │ │ │ │ │ │ │ ├── shift-right-x.svg │ │ │ │ │ │ │ ├── shift-up-y.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-guides.svg │ │ │ │ │ │ │ ├── show-hidden.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── speed-high.svg │ │ │ │ │ │ │ ├── speed-low.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock-exit.svg │ │ │ │ │ │ │ ├── stock-help.svg │ │ │ │ │ │ │ ├── stock-home.svg │ │ │ │ │ │ │ ├── stock-new-adress-book.svg │ │ │ │ │ │ │ ├── stock-refresh.svg │ │ │ │ │ │ │ ├── stock-refresh2.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_calc-cancel.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_edit.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder-copy.svg │ │ │ │ │ │ │ ├── stock_folder-move.svg │ │ │ │ │ │ │ ├── stock_folder-properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_help.svg │ │ │ │ │ │ │ ├── stock_home.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-filters-apply.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send-receive.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rev.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-card.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print-setup.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_repeat.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-all.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_search-and-replace.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_sent-mail.svg │ │ │ │ │ │ │ ├── stock_shuffle.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-1.svg │ │ │ │ │ │ │ ├── stock_zoom-in.svg │ │ │ │ │ │ │ ├── stock_zoom-out.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── symbols.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-restart.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tags.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── tracker-search-tool.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── turtle-blue.svg │ │ │ │ │ │ │ ├── turtle-grey.svg │ │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── utilities.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-compact.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-details2.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-icons2.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-list.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-readermode-active.svg │ │ │ │ │ │ │ ├── view-readermode.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_choose.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewmag+.svg │ │ │ │ │ │ │ ├── viewmag-.svg │ │ │ │ │ │ │ ├── viewmag1.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-fullscreen.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ │ ├── xfce-system-exit.svg │ │ │ │ │ │ │ ├── xfce4-appfinder.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── xy-curve.svg │ │ │ │ │ │ │ ├── xy-equation-curve.svg │ │ │ │ │ │ │ ├── xy-fit-curve.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-drawing.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-fit.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── 22x22@2x │ │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ │ ├── TeX_logo.svg │ │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ │ ├── address-book-insert.svg │ │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ │ ├── addressbook.svg │ │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ │ ├── applications-other.svg │ │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ │ ├── appointment_new.svg │ │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ ├── arrow-top-double.svg │ │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ ├── audio-cd-duplicate.svg │ │ │ │ │ │ │ ├── audio-cd-new.svg │ │ │ │ │ │ │ ├── audio-off.svg │ │ │ │ │ │ │ ├── audio-on.svg │ │ │ │ │ │ │ ├── audio-ready.svg │ │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ │ ├── automated-tasks.svg │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ │ ├── bookmark-add.svg │ │ │ │ │ │ │ ├── bookmark-list-add.svg │ │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ │ ├── bookmark-view.svg │ │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ │ ├── bookmark_list-add.svg │ │ │ │ │ │ │ ├── bookmark_list_add.svg │ │ │ │ │ │ │ ├── bookmarks-list-add.svg │ │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ ├── bookmarks_list-add.svg │ │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ │ ├── button-cancel.svg │ │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ │ ├── camera-off.svg │ │ │ │ │ │ │ ├── camera-on.svg │ │ │ │ │ │ │ ├── camera-ready.svg │ │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ │ ├── catfish.svg │ │ │ │ │ │ │ ├── cdplayer-eject.svg │ │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ │ ├── collection-refresh-amarok.svg │ │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ │ ├── dialog-fill-and-stroke.svg │ │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ │ ├── dialog-layers.svg │ │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ │ ├── dialog-rows-and-columns.svg │ │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ │ ├── dialog-text-and-font.svg │ │ │ │ │ │ │ ├── dialog-tile-clones.svg │ │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ │ ├── document-export-local.svg │ │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ │ ├── document-import-local.svg │ │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ │ ├── document-import-table.svg │ │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ │ ├── document-info.svg │ │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ │ ├── document-page-setup.svg │ │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ │ ├── edit-duplicate.svg │ │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ │ ├── edit-find-email.svg │ │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ │ ├── edit-paste-style.svg │ │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ │ ├── edit-redo-amarok.svg │ │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ │ ├── edit-select-all-layers.svg │ │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ │ ├── edit-undo-amarok.svg │ │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ │ ├── epiphany-bookmarks.svg │ │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ │ ├── epiphany-secure.svg │ │ │ │ │ │ │ ├── epiphany-unsecure.svg │ │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ │ ├── file-find.svg │ │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ │ ├── file_new.svg │ │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ │ ├── filesaveas.svg │ │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ │ ├── finish.svg │ │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ ├── flip-horizontal.svg │ │ │ │ │ │ │ ├── folder-copy.svg │ │ │ │ │ │ │ ├── folder-move.svg │ │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ │ ├── forward.svg │ │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ │ ├── gnome-fs-bookmark.svg │ │ │ │ │ │ │ ├── gnome-help.svg │ │ │ │ │ │ │ ├── gnome-run.svg │ │ │ │ │ │ │ ├── gnome-shutdown.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ │ ├── go-first-rtl.svg │ │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ │ ├── go-last-rtl.svg │ │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-rtl.svg │ │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ │ ├── gtk-info.svg │ │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ │ ├── gtk-jump-to-rtl.svg │ │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ │ ├── gtk-redo-ltr.svg │ │ │ │ │ │ │ ├── gtk-redo-rtl.svg │ │ │ │ │ │ │ ├── gtk-redo.ltr.svg │ │ │ │ │ │ │ ├── gtk-redo.svg │ │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ │ ├── gtk-save-all.svg │ │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ │ ├── gtk-search.svg │ │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ │ ├── gtk-sort-ascending.svg │ │ │ │ │ │ │ ├── gtk-sort-descending.svg │ │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ │ ├── gtk-undo-ltr.svg │ │ │ │ │ │ │ ├── gtk-undo-rtl.svg │ │ │ │ │ │ │ ├── gtk-undo.svg │ │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ │ ├── gtk-zoom-100.svg │ │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ │ ├── gtk-zoom-in.svg │ │ │ │ │ │ │ ├── gtk-zoom-out.svg │ │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ │ ├── help-faq.svg │ │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ │ ├── help.svg │ │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ │ ├── image-zoom-in.svg │ │ │ │ │ │ │ ├── image-zoom-out.svg │ │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ │ ├── insert-pause.svg │ │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ │ ├── iso-image-burn.svg │ │ │ │ │ │ │ ├── iso-image-iso.svg │ │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ │ ├── jump-today.svg │ │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ │ ├── kdenlive-track-has-effect.svg │ │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ │ ├── kfm-home.svg │ │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ │ ├── knotes_close.svg │ │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ │ ├── layer-bottom.svg │ │ │ │ │ │ │ ├── layer-delete.svg │ │ │ │ │ │ │ ├── layer-duplicate.svg │ │ │ │ │ │ │ ├── layer-lower.svg │ │ │ │ │ │ │ ├── layer-new.svg │ │ │ │ │ │ │ ├── layer-next.svg │ │ │ │ │ │ │ ├── layer-previous.svg │ │ │ │ │ │ │ ├── layer-raise.svg │ │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ │ ├── layer-top.svg │ │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ │ ├── locationbar-erase.svg │ │ │ │ │ │ │ ├── lock-insecure.svg │ │ │ │ │ │ │ ├── lock-secure.svg │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ ├── locked.svg │ │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ │ ├── mail-encrytped-full.svg │ │ │ │ │ │ │ ├── mail-encrytped-part.svg │ │ │ │ │ │ │ ├── mail-encrytped.svg │ │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ │ ├── mail-folder-sent.svg │ │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ │ ├── mail-mark-not-junk.svg │ │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ │ ├── mail-new.svg │ │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ │ ├── mail-reply.svg │ │ │ │ │ │ │ ├── mail-send-receive.svg │ │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ │ ├── mail_send.svg │ │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ │ ├── media-optical-audio-new.svg │ │ │ │ │ │ │ ├── media-optical-blank-symbolic.svg │ │ │ │ │ │ │ ├── media-optical-burn.svg │ │ │ │ │ │ │ ├── media-optical-copy.svg │ │ │ │ │ │ │ ├── media-optical-data-new.svg │ │ │ │ │ │ │ ├── media-optical-video-new.svg │ │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ │ ├── media-playback-play-pause.svg │ │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ │ ├── media-playlist-no-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-once.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-one.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ │ ├── media-write-cd.svg │ │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ │ ├── mic-off.svg │ │ │ │ │ │ │ ├── mic-on.svg │ │ │ │ │ │ │ ├── mic-ready.svg │ │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ │ ├── mixer-digital.svg │ │ │ │ │ │ │ ├── mixer-line.svg │ │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ │ ├── music-library.svg │ │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ │ ├── notebook-new.svg │ │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ │ ├── ok.svg │ │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ │ ├── path-break-apart.svg │ │ │ │ │ │ │ ├── path-combine.svg │ │ │ │ │ │ │ ├── path-cut.svg │ │ │ │ │ │ │ ├── path-difference.svg │ │ │ │ │ │ │ ├── path-division.svg │ │ │ │ │ │ │ ├── path-exclusion.svg │ │ │ │ │ │ │ ├── path-intersection.svg │ │ │ │ │ │ │ ├── path-union.svg │ │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ │ ├── pixelart-trace.svg │ │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ │ ├── player-end.svg │ │ │ │ │ │ │ ├── player-fwd.svg │ │ │ │ │ │ │ ├── player-new.svg │ │ │ │ │ │ │ ├── player-pause.svg │ │ │ │ │ │ │ ├── player-play.svg │ │ │ │ │ │ │ ├── player-record.svg │ │ │ │ │ │ │ ├── player-rew.svg │ │ │ │ │ │ │ ├── player-start.svg │ │ │ │ │ │ │ ├── player-stop.svg │ │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ │ ├── player_new.svg │ │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ │ ├── preferences-other2.svg │ │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ │ ├── preview-file.svg │ │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── ratio.svg │ │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ │ ├── redhat-home.svg │ │ │ │ │ │ │ ├── redo.svg │ │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ │ ├── retweet.svg │ │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ │ ├── rhythmbox-set-star.svg │ │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ │ ├── rotate.svg │ │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-above.svg │ │ │ │ │ │ │ ├── selection-move-to-layer-below.svg │ │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ │ ├── shift-down-y.svg │ │ │ │ │ │ │ ├── shift-left-x.svg │ │ │ │ │ │ │ ├── shift-right-x.svg │ │ │ │ │ │ │ ├── shift-up-y.svg │ │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ │ ├── show-guides.svg │ │ │ │ │ │ │ ├── show-hidden.svg │ │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ ├── speed-high.svg │ │ │ │ │ │ │ ├── speed-low.svg │ │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ │ ├── stock-exit.svg │ │ │ │ │ │ │ ├── stock-help.svg │ │ │ │ │ │ │ ├── stock-home.svg │ │ │ │ │ │ │ ├── stock-new-adress-book.svg │ │ │ │ │ │ │ ├── stock-refresh.svg │ │ │ │ │ │ │ ├── stock-refresh2.svg │ │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ │ ├── stock_bookmark.svg │ │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ │ ├── stock_calc-cancel.svg │ │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ │ ├── stock_edit.svg │ │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ │ ├── stock_folder-copy.svg │ │ │ │ │ │ │ ├── stock_folder-move.svg │ │ │ │ │ │ │ ├── stock_folder-properties.svg │ │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ │ ├── stock_help.svg │ │ │ │ │ │ │ ├── stock_home.svg │ │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ │ ├── stock_mail-filters-apply.svg │ │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ │ ├── stock_mail-send-receive.svg │ │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ │ ├── stock_media-rev.svg │ │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ │ ├── stock_new-card.svg │ │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ │ ├── stock_print-setup.svg │ │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ │ ├── stock_repeat.svg │ │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ │ ├── stock_save-all.svg │ │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ │ ├── stock_search-and-replace.svg │ │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ │ ├── stock_sent-mail.svg │ │ │ │ │ │ │ ├── stock_shuffle.svg │ │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ │ ├── stock_zoom-1.svg │ │ │ │ │ │ │ ├── stock_zoom-in.svg │ │ │ │ │ │ │ ├── stock_zoom-out.svg │ │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ │ ├── symbols.svg │ │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ │ ├── system-restart.svg │ │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ ├── tags.svg │ │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ │ ├── tracker-search-tool.svg │ │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ │ ├── turtle-blue.svg │ │ │ │ │ │ │ ├── turtle-grey.svg │ │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ │ ├── utilities.svg │ │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ │ ├── view-list-compact.svg │ │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ │ ├── view-list-details2.svg │ │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ │ ├── view-list-icons2.svg │ │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ │ ├── view-list.svg │ │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ │ ├── view-readermode-active.svg │ │ │ │ │ │ │ ├── view-readermode.svg │ │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ │ ├── view_choose.svg │ │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ │ ├── viewmag+.svg │ │ │ │ │ │ │ ├── viewmag-.svg │ │ │ │ │ │ │ ├── viewmag1.svg │ │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ │ ├── window-fullscreen.svg │ │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ │ ├── xfce-system-exit.svg │ │ │ │ │ │ │ ├── xfce4-appfinder.svg │ │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ │ ├── xy-curve.svg │ │ │ │ │ │ │ ├── xy-equation-curve.svg │ │ │ │ │ │ │ ├── xy-fit-curve.svg │ │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ │ ├── zoom-fit-drawing.svg │ │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ │ ├── zoom-fit.svg │ │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ │ ├── symbolic │ │ │ │ │ │ │ ├── action-unavailable-symbolic.svg │ │ │ │ │ │ │ ├── address-book-new-symbolic.svg │ │ │ │ │ │ │ ├── application-exit-symbolic.svg │ │ │ │ │ │ │ ├── application-menu-symbolic.svg │ │ │ │ │ │ │ ├── appointment-new-symbolic.svg │ │ │ │ │ │ │ ├── archive-symbolic.svg │ │ │ │ │ │ │ ├── bookmark-new-symbolic.svg │ │ │ │ │ │ │ ├── browser-download-symbolic.svg │ │ │ │ │ │ │ ├── call-start-symbolic.svg │ │ │ │ │ │ │ ├── call-stop-symbolic.svg │ │ │ │ │ │ │ ├── color-select-symbolic.svg │ │ │ │ │ │ │ ├── contact-new-symbolic.svg │ │ │ │ │ │ │ ├── document-export-symbolic.svg │ │ │ │ │ │ │ ├── document-import-symbolic.svg │ │ │ │ │ │ │ ├── document-new-symbolic.svg │ │ │ │ │ │ │ ├── document-open-recent-symbolic.svg │ │ │ │ │ │ │ ├── document-open-symbolic.svg │ │ │ │ │ │ │ ├── document-page-setup-symbolic.svg │ │ │ │ │ │ │ ├── document-print-preview-symbolic.svg │ │ │ │ │ │ │ ├── document-print-symbolic.svg │ │ │ │ │ │ │ ├── document-properties-symbolic.svg │ │ │ │ │ │ │ ├── document-revert-rtl-symbolic.svg │ │ │ │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ │ │ │ ├── document-revert-symbolic.svg │ │ │ │ │ │ │ ├── document-save-as-symbolic.svg │ │ │ │ │ │ │ ├── document-save-symbolic.svg │ │ │ │ │ │ │ ├── document-send-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-all-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-all-symbolic-rtl.svg │ │ │ │ │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-symbolic.svg │ │ │ │ │ │ │ ├── edit-copy-symbolic.svg │ │ │ │ │ │ │ ├── edit-cut-symbolic.svg │ │ │ │ │ │ │ ├── edit-delete-symbolic.svg │ │ │ │ │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ │ │ │ │ ├── edit-find-symbolic.svg │ │ │ │ │ │ │ ├── edit-paste-symbolic.svg │ │ │ │ │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-redo-symbolic.svg │ │ │ │ │ │ │ ├── edit-select-all-symbolic.svg │ │ │ │ │ │ │ ├── edit-select-symbolic.svg │ │ │ │ │ │ │ ├── edit-symbolic.svg │ │ │ │ │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-undo-symbolic.svg │ │ │ │ │ │ │ ├── find-location-symbolic.svg │ │ │ │ │ │ │ ├── flag-symbolic.svg │ │ │ │ │ │ │ ├── folder-new-symbolic.svg │ │ │ │ │ │ │ ├── font-select-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-less-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-indent-less-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-more-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-indent-more-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-center-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-left-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-right-symbolic.svg │ │ │ │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ │ │ │ ├── format-text-larger-symbolic.svg │ │ │ │ │ │ │ ├── format-text-remove-formatting-symbolic.svg │ │ │ │ │ │ │ ├── format-text-smaller-symbolic.svg │ │ │ │ │ │ │ ├── format-text-strikethrough-symbolic.svg │ │ │ │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ │ │ │ ├── forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── forward-symbolic.svg │ │ │ │ │ │ │ ├── go-bottom-symbolic.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-first-symbolic.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-jump-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-jump-symbolic.svg │ │ │ │ │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-last-symbolic.svg │ │ │ │ │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-top-symbolic.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── help-about-symbolic.svg │ │ │ │ │ │ │ ├── help-info-symbolic.svg │ │ │ │ │ │ │ ├── image-crop-symbolic.svg │ │ │ │ │ │ │ ├── image-denoise-symbolic.svg │ │ │ │ │ │ │ ├── image-filter-symbolic.svg │ │ │ │ │ │ │ ├── image-red-eye-symbolic.svg │ │ │ │ │ │ │ ├── image-sharpen-symbolic.svg │ │ │ │ │ │ │ ├── image-straighten-symbolic.svg │ │ │ │ │ │ │ ├── insert-emoticon-symbolic.svg │ │ │ │ │ │ │ ├── insert-image-symbolic.svg │ │ │ │ │ │ │ ├── insert-link-symbolic.svg │ │ │ │ │ │ │ ├── insert-object-symbolic.svg │ │ │ │ │ │ │ ├── insert-text-symbolic.svg │ │ │ │ │ │ │ ├── link-symbolic.svg │ │ │ │ │ │ │ ├── list-add-symbolic.svg │ │ │ │ │ │ │ ├── list-remove-all-symbolic.svg │ │ │ │ │ │ │ ├── list-remove-symbolic.svg │ │ │ │ │ │ │ ├── location-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-junk-symbolic.svg │ │ │ │ │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ │ │ │ │ ├── mail-send-symbolic.svg │ │ │ │ │ │ │ ├── mark-location-symbolic.svg │ │ │ │ │ │ │ ├── marker-symbolic.svg │ │ │ │ │ │ │ ├── media-eject-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-play-pause-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-start-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playback-start-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-consecutive-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-consecutive-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playlist-consecutive-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-no-repeat-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-no-shuffle-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-once-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-one-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ │ │ │ │ ├── media-record-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-skip-forward-symbolic.svg │ │ │ │ │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ │ │ │ │ ├── object-flip-horizontal-symbolic.svg │ │ │ │ │ │ │ ├── object-flip-vertical-symbolic.svg │ │ │ │ │ │ │ ├── object-rotate-left-symbolic.svg │ │ │ │ │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ │ │ │ │ ├── object-select-symbolic.svg │ │ │ │ │ │ │ ├── object-straighten-symbolic.svg │ │ │ │ │ │ │ ├── open-menu-symbolic.svg │ │ │ │ │ │ │ ├── pan-down-symbolic.svg │ │ │ │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pan-end-symbolic.svg │ │ │ │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pan-start-symbolic.svg │ │ │ │ │ │ │ ├── pan-up-symbolic.svg │ │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pane-hide-symbolic.svg │ │ │ │ │ │ │ ├── pane-show-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pane-show-symbolic.svg │ │ │ │ │ │ │ ├── process-stop-symbolic.svg │ │ │ │ │ │ │ ├── reply-all-rtl-symbolic.svg │ │ │ │ │ │ │ ├── reply-all-symbolic-rtl.svg │ │ │ │ │ │ │ ├── reply-all-symbolic.svg │ │ │ │ │ │ │ ├── reply-rtl-symbolic.svg │ │ │ │ │ │ │ ├── reply-symbolic.svg │ │ │ │ │ │ │ ├── search-symbolic.svg │ │ │ │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ │ │ │ ├── selection-end-symbolic.svg │ │ │ │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── selection-start-symbolic.svg │ │ │ │ │ │ │ ├── send-to-symbolic.svg │ │ │ │ │ │ │ ├── sidebar-places-symbolic.svg │ │ │ │ │ │ │ ├── spam-symbolic.svg │ │ │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ │ │ ├── start-here-symbolic.svg │ │ │ │ │ │ │ ├── system-run-symbolic.svg │ │ │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ │ │ ├── system-upgrade-symbolic.svg │ │ │ │ │ │ │ ├── tab-new-symbolic.svg │ │ │ │ │ │ │ ├── tag-symbolic.svg │ │ │ │ │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ │ │ │ │ ├── view-column-symbolic.svg │ │ │ │ │ │ │ ├── view-compact-symbolic.svg │ │ │ │ │ │ │ ├── view-continuous-symbolic.svg │ │ │ │ │ │ │ ├── view-coverflow-symbolic.svg │ │ │ │ │ │ │ ├── view-dual-symbolic.svg │ │ │ │ │ │ │ ├── view-filter-rtl-symbolic.svg │ │ │ │ │ │ │ ├── view-filter-symbolic-rtl.svg │ │ │ │ │ │ │ ├── view-filter-symbolic.svg │ │ │ │ │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ │ │ │ │ ├── view-grid-symbolic.svg │ │ │ │ │ │ │ ├── view-list-compact-symbolic.svg │ │ │ │ │ │ │ ├── view-list-images-symbolic.svg │ │ │ │ │ │ │ ├── view-list-symbolic.svg │ │ │ │ │ │ │ ├── view-list-video-symbolic.svg │ │ │ │ │ │ │ ├── view-more-symbolic.svg │ │ │ │ │ │ │ ├── view-paged-symbolic.svg │ │ │ │ │ │ │ ├── view-refresh-symbolic.svg │ │ │ │ │ │ │ ├── view-restore-symbolic.svg │ │ │ │ │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ │ │ │ │ ├── view-sort-descending-symbolic.svg │ │ │ │ │ │ │ ├── window-close-symbolic.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-maximize-symbolic.svg │ │ │ │ │ │ │ ├── window-minimize-symbolic.svg │ │ │ │ │ │ │ ├── window-restore-symbolic.svg │ │ │ │ │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ │ │ │ │ ├── zoom-in-symbolic.svg │ │ │ │ │ │ │ ├── zoom-original-symbolic.svg │ │ │ │ │ │ │ └── zoom-out-symbolic.svg │ │ │ │ │ │ └── symbolic@2x │ │ │ │ │ │ │ ├── action-unavailable-symbolic.svg │ │ │ │ │ │ │ ├── address-book-new-symbolic.svg │ │ │ │ │ │ │ ├── application-exit-symbolic.svg │ │ │ │ │ │ │ ├── application-menu-symbolic.svg │ │ │ │ │ │ │ ├── appointment-new-symbolic.svg │ │ │ │ │ │ │ ├── archive-symbolic.svg │ │ │ │ │ │ │ ├── bookmark-new-symbolic.svg │ │ │ │ │ │ │ ├── browser-download-symbolic.svg │ │ │ │ │ │ │ ├── call-start-symbolic.svg │ │ │ │ │ │ │ ├── call-stop-symbolic.svg │ │ │ │ │ │ │ ├── color-select-symbolic.svg │ │ │ │ │ │ │ ├── contact-new-symbolic.svg │ │ │ │ │ │ │ ├── document-export-symbolic.svg │ │ │ │ │ │ │ ├── document-import-symbolic.svg │ │ │ │ │ │ │ ├── document-new-symbolic.svg │ │ │ │ │ │ │ ├── document-open-recent-symbolic.svg │ │ │ │ │ │ │ ├── document-open-symbolic.svg │ │ │ │ │ │ │ ├── document-page-setup-symbolic.svg │ │ │ │ │ │ │ ├── document-print-preview-symbolic.svg │ │ │ │ │ │ │ ├── document-print-symbolic.svg │ │ │ │ │ │ │ ├── document-properties-symbolic.svg │ │ │ │ │ │ │ ├── document-revert-rtl-symbolic.svg │ │ │ │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ │ │ │ ├── document-revert-symbolic.svg │ │ │ │ │ │ │ ├── document-save-as-symbolic.svg │ │ │ │ │ │ │ ├── document-save-symbolic.svg │ │ │ │ │ │ │ ├── document-send-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-all-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-all-symbolic-rtl.svg │ │ │ │ │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ │ │ │ │ ├── edit-clear-symbolic.svg │ │ │ │ │ │ │ ├── edit-copy-symbolic.svg │ │ │ │ │ │ │ ├── edit-cut-symbolic.svg │ │ │ │ │ │ │ ├── edit-delete-symbolic.svg │ │ │ │ │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ │ │ │ │ ├── edit-find-symbolic.svg │ │ │ │ │ │ │ ├── edit-paste-symbolic.svg │ │ │ │ │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-redo-symbolic.svg │ │ │ │ │ │ │ ├── edit-select-all-symbolic.svg │ │ │ │ │ │ │ ├── edit-select-symbolic.svg │ │ │ │ │ │ │ ├── edit-symbolic.svg │ │ │ │ │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ │ │ │ │ ├── edit-undo-symbolic.svg │ │ │ │ │ │ │ ├── find-location-symbolic.svg │ │ │ │ │ │ │ ├── flag-symbolic.svg │ │ │ │ │ │ │ ├── folder-new-symbolic.svg │ │ │ │ │ │ │ ├── font-select-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-less-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-indent-less-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-more-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-indent-more-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-center-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-left-symbolic.svg │ │ │ │ │ │ │ ├── format-justify-right-symbolic.svg │ │ │ │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ │ │ │ ├── format-text-larger-symbolic.svg │ │ │ │ │ │ │ ├── format-text-remove-formatting-symbolic.svg │ │ │ │ │ │ │ ├── format-text-smaller-symbolic.svg │ │ │ │ │ │ │ ├── format-text-strikethrough-symbolic.svg │ │ │ │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ │ │ │ ├── forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── forward-symbolic.svg │ │ │ │ │ │ │ ├── go-bottom-symbolic.svg │ │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-first-symbolic.svg │ │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-jump-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-jump-symbolic.svg │ │ │ │ │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-last-symbolic.svg │ │ │ │ │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ │ ├── go-top-symbolic.svg │ │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ │ ├── help-about-symbolic.svg │ │ │ │ │ │ │ ├── help-info-symbolic.svg │ │ │ │ │ │ │ ├── image-crop-symbolic.svg │ │ │ │ │ │ │ ├── image-denoise-symbolic.svg │ │ │ │ │ │ │ ├── image-filter-symbolic.svg │ │ │ │ │ │ │ ├── image-red-eye-symbolic.svg │ │ │ │ │ │ │ ├── image-sharpen-symbolic.svg │ │ │ │ │ │ │ ├── image-straighten-symbolic.svg │ │ │ │ │ │ │ ├── insert-emoticon-symbolic.svg │ │ │ │ │ │ │ ├── insert-image-symbolic.svg │ │ │ │ │ │ │ ├── insert-link-symbolic.svg │ │ │ │ │ │ │ ├── insert-object-symbolic.svg │ │ │ │ │ │ │ ├── insert-text-symbolic.svg │ │ │ │ │ │ │ ├── link-symbolic.svg │ │ │ │ │ │ │ ├── list-add-symbolic.svg │ │ │ │ │ │ │ ├── list-remove-all-symbolic.svg │ │ │ │ │ │ │ ├── list-remove-symbolic.svg │ │ │ │ │ │ │ ├── location-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ │ │ │ │ ├── mail-mark-junk-symbolic.svg │ │ │ │ │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ │ │ │ │ ├── mail-send-symbolic.svg │ │ │ │ │ │ │ ├── mark-location-symbolic.svg │ │ │ │ │ │ │ ├── marker-symbolic.svg │ │ │ │ │ │ │ ├── media-eject-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-play-pause-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-start-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playback-start-symbolic.svg │ │ │ │ │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-consecutive-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-consecutive-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playlist-consecutive-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-no-repeat-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-no-shuffle-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-once-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-one-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ │ │ │ │ ├── media-record-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ │ │ │ ├── media-skip-forward-symbolic.svg │ │ │ │ │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ │ │ │ │ ├── object-flip-horizontal-symbolic.svg │ │ │ │ │ │ │ ├── object-flip-vertical-symbolic.svg │ │ │ │ │ │ │ ├── object-rotate-left-symbolic.svg │ │ │ │ │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ │ │ │ │ ├── object-select-symbolic.svg │ │ │ │ │ │ │ ├── object-straighten-symbolic.svg │ │ │ │ │ │ │ ├── open-menu-symbolic.svg │ │ │ │ │ │ │ ├── pan-down-symbolic.svg │ │ │ │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pan-end-symbolic.svg │ │ │ │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pan-start-symbolic.svg │ │ │ │ │ │ │ ├── pan-up-symbolic.svg │ │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pane-hide-symbolic.svg │ │ │ │ │ │ │ ├── pane-show-symbolic-rtl.svg │ │ │ │ │ │ │ ├── pane-show-symbolic.svg │ │ │ │ │ │ │ ├── process-stop-symbolic.svg │ │ │ │ │ │ │ ├── reply-all-rtl-symbolic.svg │ │ │ │ │ │ │ ├── reply-all-symbolic-rtl.svg │ │ │ │ │ │ │ ├── reply-all-symbolic.svg │ │ │ │ │ │ │ ├── reply-rtl-symbolic.svg │ │ │ │ │ │ │ ├── reply-symbolic.svg │ │ │ │ │ │ │ ├── search-symbolic.svg │ │ │ │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ │ │ │ ├── selection-end-symbolic.svg │ │ │ │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ │ │ │ ├── selection-start-symbolic.svg │ │ │ │ │ │ │ ├── send-to-symbolic.svg │ │ │ │ │ │ │ ├── sidebar-places-symbolic.svg │ │ │ │ │ │ │ ├── spam-symbolic.svg │ │ │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ │ │ ├── start-here-symbolic.svg │ │ │ │ │ │ │ ├── system-run-symbolic.svg │ │ │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ │ │ ├── system-upgrade-symbolic.svg │ │ │ │ │ │ │ ├── tab-new-symbolic.svg │ │ │ │ │ │ │ ├── tag-symbolic.svg │ │ │ │ │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ │ │ │ │ ├── view-column-symbolic.svg │ │ │ │ │ │ │ ├── view-compact-symbolic.svg │ │ │ │ │ │ │ ├── view-continuous-symbolic.svg │ │ │ │ │ │ │ ├── view-coverflow-symbolic.svg │ │ │ │ │ │ │ ├── view-dual-symbolic.svg │ │ │ │ │ │ │ ├── view-filter-rtl-symbolic.svg │ │ │ │ │ │ │ ├── view-filter-symbolic-rtl.svg │ │ │ │ │ │ │ ├── view-filter-symbolic.svg │ │ │ │ │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ │ │ │ │ ├── view-grid-symbolic.svg │ │ │ │ │ │ │ ├── view-list-compact-symbolic.svg │ │ │ │ │ │ │ ├── view-list-images-symbolic.svg │ │ │ │ │ │ │ ├── view-list-symbolic.svg │ │ │ │ │ │ │ ├── view-list-video-symbolic.svg │ │ │ │ │ │ │ ├── view-more-symbolic.svg │ │ │ │ │ │ │ ├── view-paged-symbolic.svg │ │ │ │ │ │ │ ├── view-refresh-symbolic.svg │ │ │ │ │ │ │ ├── view-restore-symbolic.svg │ │ │ │ │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ │ │ │ │ ├── view-sort-descending-symbolic.svg │ │ │ │ │ │ │ ├── window-close-symbolic.svg │ │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ │ ├── window-maximize-symbolic.svg │ │ │ │ │ │ │ ├── window-minimize-symbolic.svg │ │ │ │ │ │ │ ├── window-restore-symbolic.svg │ │ │ │ │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ │ │ │ │ ├── zoom-in-symbolic.svg │ │ │ │ │ │ │ ├── zoom-original-symbolic.svg │ │ │ │ │ │ │ └── zoom-out-symbolic.svg │ │ │ │ │ ├── emblems │ │ │ │ │ │ ├── scalable │ │ │ │ │ │ │ ├── avatar-default-dark.svg │ │ │ │ │ │ │ ├── avatar-default-light.svg │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-checked.svg │ │ │ │ │ │ │ ├── emblem-default.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-important.svg │ │ │ │ │ │ │ ├── emblem-information.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-mounted.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-nowrite.svg │ │ │ │ │ │ │ ├── emblem-pause.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-question.svg │ │ │ │ │ │ │ ├── emblem-readonly.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-success.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unavailable.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unmounted.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── emblem-warning.svg │ │ │ │ │ │ │ ├── emblem-web.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ ├── vcs-conflicting.svg │ │ │ │ │ │ │ ├── vcs-locally-modified-unstaged.svg │ │ │ │ │ │ │ ├── vcs-locally-modified.svg │ │ │ │ │ │ │ ├── vcs-normal.svg │ │ │ │ │ │ │ ├── vcs-removed.svg │ │ │ │ │ │ │ └── vcs-update-required.svg │ │ │ │ │ │ ├── scalable@2x │ │ │ │ │ │ │ ├── avatar-default-dark.svg │ │ │ │ │ │ │ ├── avatar-default-light.svg │ │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ │ ├── emblem-checked.svg │ │ │ │ │ │ │ ├── emblem-default.svg │ │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ │ ├── emblem-important.svg │ │ │ │ │ │ │ ├── emblem-information.svg │ │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ │ ├── emblem-mounted.svg │ │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ │ ├── emblem-nowrite.svg │ │ │ │ │ │ │ ├── emblem-pause.svg │ │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ │ ├── emblem-question.svg │ │ │ │ │ │ │ ├── emblem-readonly.svg │ │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ │ ├── emblem-success.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ │ ├── emblem-unavailable.svg │ │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ │ ├── emblem-unmounted.svg │ │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ │ ├── emblem-warning.svg │ │ │ │ │ │ │ ├── emblem-web.svg │ │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ │ ├── vcs-conflicting.svg │ │ │ │ │ │ │ ├── vcs-locally-modified-unstaged.svg │ │ │ │ │ │ │ ├── vcs-locally-modified.svg │ │ │ │ │ │ │ ├── vcs-normal.svg │ │ │ │ │ │ │ ├── vcs-removed.svg │ │ │ │ │ │ │ └── vcs-update-required.svg │ │ │ │ │ │ ├── symbolic │ │ │ │ │ │ │ ├── emblem-default-symbolic.svg │ │ │ │ │ │ │ ├── emblem-documents-symbolic.svg │ │ │ │ │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ │ │ │ │ ├── emblem-important-symbolic.svg │ │ │ │ │ │ │ ├── emblem-music-symbolic.svg │ │ │ │ │ │ │ ├── emblem-ok-symbolic.svg │ │ │ │ │ │ │ ├── emblem-photos-symbolic.svg │ │ │ │ │ │ │ ├── emblem-shared-symbolic.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link-symbolic.svg │ │ │ │ │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ │ │ │ │ ├── emblem-system-symbolic.svg │ │ │ │ │ │ │ └── emblem-videos-symbolic.svg │ │ │ │ │ │ └── symbolic@2x │ │ │ │ │ │ │ ├── emblem-default-symbolic.svg │ │ │ │ │ │ │ ├── emblem-documents-symbolic.svg │ │ │ │ │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ │ │ │ │ ├── emblem-important-symbolic.svg │ │ │ │ │ │ │ ├── emblem-music-symbolic.svg │ │ │ │ │ │ │ ├── emblem-ok-symbolic.svg │ │ │ │ │ │ │ ├── emblem-photos-symbolic.svg │ │ │ │ │ │ │ ├── emblem-shared-symbolic.svg │ │ │ │ │ │ │ ├── emblem-symbolic-link-symbolic.svg │ │ │ │ │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ │ │ │ │ ├── emblem-system-symbolic.svg │ │ │ │ │ │ │ └── emblem-videos-symbolic.svg │ │ │ │ │ ├── index.theme │ │ │ │ │ └── status │ │ │ │ │ │ ├── scalable │ │ │ │ │ │ ├── appointment-missed.svg │ │ │ │ │ │ ├── appointment-soon.svg │ │ │ │ │ │ ├── audio-volume-high.svg │ │ │ │ │ │ ├── audio-volume-low.svg │ │ │ │ │ │ ├── audio-volume-medium.svg │ │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ │ ├── battery-000-charging.svg │ │ │ │ │ │ ├── battery-000.svg │ │ │ │ │ │ ├── battery-020-charging.svg │ │ │ │ │ │ ├── battery-020.svg │ │ │ │ │ │ ├── battery-040-charging.svg │ │ │ │ │ │ ├── battery-040.svg │ │ │ │ │ │ ├── battery-060-charging.svg │ │ │ │ │ │ ├── battery-060.svg │ │ │ │ │ │ ├── battery-080-charging.svg │ │ │ │ │ │ ├── battery-080.svg │ │ │ │ │ │ ├── battery-100-charging.svg │ │ │ │ │ │ ├── battery-100.svg │ │ │ │ │ │ ├── battery-caution-charging.svg │ │ │ │ │ │ ├── battery-caution.svg │ │ │ │ │ │ ├── battery-empty-charging.svg │ │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ │ ├── battery-full-charged.svg │ │ │ │ │ │ ├── battery-full-charging.svg │ │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ │ ├── battery-good-charging.svg │ │ │ │ │ │ ├── battery-good.svg │ │ │ │ │ │ ├── battery-low-charging.svg │ │ │ │ │ │ ├── battery-low.svg │ │ │ │ │ │ ├── battery-missing.svg │ │ │ │ │ │ ├── camera-off.svg │ │ │ │ │ │ ├── camera-on.svg │ │ │ │ │ │ ├── camera-ready.svg │ │ │ │ │ │ ├── clipit-trayicon.svg │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ ├── firewall-applet-error.svg │ │ │ │ │ │ ├── firewall-applet.svg │ │ │ │ │ │ ├── gnome-fs-loading-icon.svg │ │ │ │ │ │ ├── gpm-battery-000-charging.svg │ │ │ │ │ │ ├── gpm-battery-000.svg │ │ │ │ │ │ ├── gpm-battery-020-charging.svg │ │ │ │ │ │ ├── gpm-battery-020.svg │ │ │ │ │ │ ├── gpm-battery-040-charging.svg │ │ │ │ │ │ ├── gpm-battery-040.svg │ │ │ │ │ │ ├── gpm-battery-060-charging.svg │ │ │ │ │ │ ├── gpm-battery-060.svg │ │ │ │ │ │ ├── gpm-battery-080-charging.svg │ │ │ │ │ │ ├── gpm-battery-080.svg │ │ │ │ │ │ ├── gpm-battery-100-charging.svg │ │ │ │ │ │ ├── gpm-battery-100.svg │ │ │ │ │ │ ├── gpm-battery-empty.svg │ │ │ │ │ │ ├── gpm-battery-missing.svg │ │ │ │ │ │ ├── gtk-dialog-authentication.svg │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ ├── laptop-connected.svg │ │ │ │ │ │ ├── laptop-disconnected.svg │ │ │ │ │ │ ├── laptop-trusted.svg │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ ├── mic-off.svg │ │ │ │ │ │ ├── mic-on.svg │ │ │ │ │ │ ├── mic-ready.svg │ │ │ │ │ │ ├── microphone-sensitivity-high.svg │ │ │ │ │ │ ├── microphone-sensitivity-low.svg │ │ │ │ │ │ ├── microphone-sensitivity-medium.svg │ │ │ │ │ │ ├── microphone-sensitivity-muted.svg │ │ │ │ │ │ ├── non-starred.svg │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ ├── printer-error.svg │ │ │ │ │ │ ├── printer-printing.svg │ │ │ │ │ │ ├── redshift-status-off.svg │ │ │ │ │ │ ├── redshift-status-on.svg │ │ │ │ │ │ ├── security-high.svg │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ ├── semi-starred.svg │ │ │ │ │ │ ├── smartphone-connected.svg │ │ │ │ │ │ ├── smartphone-disconnected.svg │ │ │ │ │ │ ├── smartphone-trusted.svg │ │ │ │ │ │ ├── starred.svg │ │ │ │ │ │ ├── state-download.svg │ │ │ │ │ │ ├── state-error.svg │ │ │ │ │ │ ├── state-information.svg │ │ │ │ │ │ ├── state-offline.svg │ │ │ │ │ │ ├── state-ok.svg │ │ │ │ │ │ ├── state-pause.svg │ │ │ │ │ │ ├── state-sync.svg │ │ │ │ │ │ ├── state-warning.svg │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ ├── tablet-connected.svg │ │ │ │ │ │ ├── tablet-disconnected.svg │ │ │ │ │ │ ├── tablet-trusted.svg │ │ │ │ │ │ ├── update-high.svg │ │ │ │ │ │ ├── update-low.svg │ │ │ │ │ │ ├── update-medium.svg │ │ │ │ │ │ ├── update-none.svg │ │ │ │ │ │ ├── user-available.svg │ │ │ │ │ │ ├── user-away-extended.svg │ │ │ │ │ │ ├── user-away.svg │ │ │ │ │ │ ├── user-busy.svg │ │ │ │ │ │ ├── user-extended-away.svg │ │ │ │ │ │ ├── user-idle.svg │ │ │ │ │ │ ├── user-invisible.svg │ │ │ │ │ │ ├── user-offline.svg │ │ │ │ │ │ ├── user-online.svg │ │ │ │ │ │ ├── xfce4-battery-caution-charging.svg │ │ │ │ │ │ ├── xfce4-battery-caution.svg │ │ │ │ │ │ ├── xfce4-battery-critical-charging.svg │ │ │ │ │ │ ├── xfce4-battery-critical.svg │ │ │ │ │ │ ├── xfce4-battery-full-charging.svg │ │ │ │ │ │ ├── xfce4-battery-full.svg │ │ │ │ │ │ ├── xfce4-battery-good-charging.svg │ │ │ │ │ │ ├── xfce4-battery-good.svg │ │ │ │ │ │ ├── xfce4-battery-low-charging.svg │ │ │ │ │ │ ├── xfce4-battery-low.svg │ │ │ │ │ │ ├── xfce4-battery-missing.svg │ │ │ │ │ │ ├── xfce4-battery-ok-charging.svg │ │ │ │ │ │ ├── xfce4-battery-ok.svg │ │ │ │ │ │ ├── xfce4-battery-plugin.svg │ │ │ │ │ │ ├── xfpm-battery-000-charging.svg │ │ │ │ │ │ ├── xfpm-battery-000.svg │ │ │ │ │ │ ├── xfpm-battery-020-charging.svg │ │ │ │ │ │ ├── xfpm-battery-020.svg │ │ │ │ │ │ ├── xfpm-battery-040-charging.svg │ │ │ │ │ │ ├── xfpm-battery-040.svg │ │ │ │ │ │ ├── xfpm-battery-060-charging.svg │ │ │ │ │ │ ├── xfpm-battery-060.svg │ │ │ │ │ │ ├── xfpm-battery-080-charging.svg │ │ │ │ │ │ ├── xfpm-battery-080.svg │ │ │ │ │ │ ├── xfpm-battery-100-charging.svg │ │ │ │ │ │ ├── xfpm-battery-100.svg │ │ │ │ │ │ ├── xfpm-battery-caution-charging.svg │ │ │ │ │ │ ├── xfpm-battery-caution.svg │ │ │ │ │ │ ├── xfpm-battery-charged.svg │ │ │ │ │ │ ├── xfpm-battery-critical-charging.svg │ │ │ │ │ │ ├── xfpm-battery-critical.svg │ │ │ │ │ │ ├── xfpm-battery-empty.svg │ │ │ │ │ │ ├── xfpm-battery-full-charging.svg │ │ │ │ │ │ ├── xfpm-battery-full.svg │ │ │ │ │ │ ├── xfpm-battery-good-charging.svg │ │ │ │ │ │ ├── xfpm-battery-good.svg │ │ │ │ │ │ ├── xfpm-battery-low-charging.svg │ │ │ │ │ │ ├── xfpm-battery-low.svg │ │ │ │ │ │ ├── xfpm-battery-missing.svg │ │ │ │ │ │ ├── xfpm-battery-ok-charging.svg │ │ │ │ │ │ ├── xfpm-battery-ok.svg │ │ │ │ │ │ ├── xfpm-primary-000-charging.svg │ │ │ │ │ │ ├── xfpm-primary-000.svg │ │ │ │ │ │ ├── xfpm-primary-020-charging.svg │ │ │ │ │ │ ├── xfpm-primary-020.svg │ │ │ │ │ │ ├── xfpm-primary-040-charging.svg │ │ │ │ │ │ ├── xfpm-primary-040.svg │ │ │ │ │ │ ├── xfpm-primary-060-charging.svg │ │ │ │ │ │ ├── xfpm-primary-060.svg │ │ │ │ │ │ ├── xfpm-primary-080-charging.svg │ │ │ │ │ │ ├── xfpm-primary-080.svg │ │ │ │ │ │ ├── xfpm-primary-100-charging.svg │ │ │ │ │ │ ├── xfpm-primary-100.svg │ │ │ │ │ │ ├── xfpm-primary-caution-charging.svg │ │ │ │ │ │ ├── xfpm-primary-caution.svg │ │ │ │ │ │ ├── xfpm-primary-charged.svg │ │ │ │ │ │ ├── xfpm-primary-critical-charging.svg │ │ │ │ │ │ ├── xfpm-primary-critical.svg │ │ │ │ │ │ ├── xfpm-primary-empty.svg │ │ │ │ │ │ ├── xfpm-primary-full-charging.svg │ │ │ │ │ │ ├── xfpm-primary-full.svg │ │ │ │ │ │ ├── xfpm-primary-good-charging.svg │ │ │ │ │ │ ├── xfpm-primary-good.svg │ │ │ │ │ │ ├── xfpm-primary-low-charging.svg │ │ │ │ │ │ ├── xfpm-primary-low.svg │ │ │ │ │ │ ├── xfpm-primary-missing.svg │ │ │ │ │ │ ├── xfpm-primary-ok-charging.svg │ │ │ │ │ │ └── xfpm-primary-ok.svg │ │ │ │ │ │ ├── scalable@2x │ │ │ │ │ │ ├── appointment-missed.svg │ │ │ │ │ │ ├── appointment-soon.svg │ │ │ │ │ │ ├── audio-volume-high.svg │ │ │ │ │ │ ├── audio-volume-low.svg │ │ │ │ │ │ ├── audio-volume-medium.svg │ │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ │ ├── battery-000-charging.svg │ │ │ │ │ │ ├── battery-000.svg │ │ │ │ │ │ ├── battery-020-charging.svg │ │ │ │ │ │ ├── battery-020.svg │ │ │ │ │ │ ├── battery-040-charging.svg │ │ │ │ │ │ ├── battery-040.svg │ │ │ │ │ │ ├── battery-060-charging.svg │ │ │ │ │ │ ├── battery-060.svg │ │ │ │ │ │ ├── battery-080-charging.svg │ │ │ │ │ │ ├── battery-080.svg │ │ │ │ │ │ ├── battery-100-charging.svg │ │ │ │ │ │ ├── battery-100.svg │ │ │ │ │ │ ├── battery-caution-charging.svg │ │ │ │ │ │ ├── battery-caution.svg │ │ │ │ │ │ ├── battery-empty-charging.svg │ │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ │ ├── battery-full-charged.svg │ │ │ │ │ │ ├── battery-full-charging.svg │ │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ │ ├── battery-good-charging.svg │ │ │ │ │ │ ├── battery-good.svg │ │ │ │ │ │ ├── battery-low-charging.svg │ │ │ │ │ │ ├── battery-low.svg │ │ │ │ │ │ ├── battery-missing.svg │ │ │ │ │ │ ├── camera-off.svg │ │ │ │ │ │ ├── camera-on.svg │ │ │ │ │ │ ├── camera-ready.svg │ │ │ │ │ │ ├── clipit-trayicon.svg │ │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ │ ├── firewall-applet-error.svg │ │ │ │ │ │ ├── firewall-applet.svg │ │ │ │ │ │ ├── gnome-fs-loading-icon.svg │ │ │ │ │ │ ├── gpm-battery-000-charging.svg │ │ │ │ │ │ ├── gpm-battery-000.svg │ │ │ │ │ │ ├── gpm-battery-020-charging.svg │ │ │ │ │ │ ├── gpm-battery-020.svg │ │ │ │ │ │ ├── gpm-battery-040-charging.svg │ │ │ │ │ │ ├── gpm-battery-040.svg │ │ │ │ │ │ ├── gpm-battery-060-charging.svg │ │ │ │ │ │ ├── gpm-battery-060.svg │ │ │ │ │ │ ├── gpm-battery-080-charging.svg │ │ │ │ │ │ ├── gpm-battery-080.svg │ │ │ │ │ │ ├── gpm-battery-100-charging.svg │ │ │ │ │ │ ├── gpm-battery-100.svg │ │ │ │ │ │ ├── gpm-battery-empty.svg │ │ │ │ │ │ ├── gpm-battery-missing.svg │ │ │ │ │ │ ├── gtk-dialog-authentication.svg │ │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ │ ├── laptop-connected.svg │ │ │ │ │ │ ├── laptop-disconnected.svg │ │ │ │ │ │ ├── laptop-trusted.svg │ │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ ├── mic-off.svg │ │ │ │ │ │ ├── mic-on.svg │ │ │ │ │ │ ├── mic-ready.svg │ │ │ │ │ │ ├── microphone-sensitivity-high.svg │ │ │ │ │ │ ├── microphone-sensitivity-low.svg │ │ │ │ │ │ ├── microphone-sensitivity-medium.svg │ │ │ │ │ │ ├── microphone-sensitivity-muted.svg │ │ │ │ │ │ ├── non-starred.svg │ │ │ │ │ │ ├── offline.svg │ │ │ │ │ │ ├── online.svg │ │ │ │ │ │ ├── printer-error.svg │ │ │ │ │ │ ├── printer-printing.svg │ │ │ │ │ │ ├── redshift-status-off.svg │ │ │ │ │ │ ├── redshift-status-on.svg │ │ │ │ │ │ ├── security-high.svg │ │ │ │ │ │ ├── security-low.svg │ │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ │ ├── semi-starred.svg │ │ │ │ │ │ ├── smartphone-connected.svg │ │ │ │ │ │ ├── smartphone-disconnected.svg │ │ │ │ │ │ ├── smartphone-trusted.svg │ │ │ │ │ │ ├── starred.svg │ │ │ │ │ │ ├── state-download.svg │ │ │ │ │ │ ├── state-error.svg │ │ │ │ │ │ ├── state-information.svg │ │ │ │ │ │ ├── state-offline.svg │ │ │ │ │ │ ├── state-ok.svg │ │ │ │ │ │ ├── state-pause.svg │ │ │ │ │ │ ├── state-sync.svg │ │ │ │ │ │ ├── state-warning.svg │ │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ │ ├── tablet-connected.svg │ │ │ │ │ │ ├── tablet-disconnected.svg │ │ │ │ │ │ ├── tablet-trusted.svg │ │ │ │ │ │ ├── update-high.svg │ │ │ │ │ │ ├── update-low.svg │ │ │ │ │ │ ├── update-medium.svg │ │ │ │ │ │ ├── update-none.svg │ │ │ │ │ │ ├── user-available.svg │ │ │ │ │ │ ├── user-away-extended.svg │ │ │ │ │ │ ├── user-away.svg │ │ │ │ │ │ ├── user-busy.svg │ │ │ │ │ │ ├── user-extended-away.svg │ │ │ │ │ │ ├── user-idle.svg │ │ │ │ │ │ ├── user-invisible.svg │ │ │ │ │ │ ├── user-offline.svg │ │ │ │ │ │ ├── user-online.svg │ │ │ │ │ │ ├── xfce4-battery-caution-charging.svg │ │ │ │ │ │ ├── xfce4-battery-caution.svg │ │ │ │ │ │ ├── xfce4-battery-critical-charging.svg │ │ │ │ │ │ ├── xfce4-battery-critical.svg │ │ │ │ │ │ ├── xfce4-battery-full-charging.svg │ │ │ │ │ │ ├── xfce4-battery-full.svg │ │ │ │ │ │ ├── xfce4-battery-good-charging.svg │ │ │ │ │ │ ├── xfce4-battery-good.svg │ │ │ │ │ │ ├── xfce4-battery-low-charging.svg │ │ │ │ │ │ ├── xfce4-battery-low.svg │ │ │ │ │ │ ├── xfce4-battery-missing.svg │ │ │ │ │ │ ├── xfce4-battery-ok-charging.svg │ │ │ │ │ │ ├── xfce4-battery-ok.svg │ │ │ │ │ │ ├── xfce4-battery-plugin.svg │ │ │ │ │ │ ├── xfpm-battery-000-charging.svg │ │ │ │ │ │ ├── xfpm-battery-000.svg │ │ │ │ │ │ ├── xfpm-battery-020-charging.svg │ │ │ │ │ │ ├── xfpm-battery-020.svg │ │ │ │ │ │ ├── xfpm-battery-040-charging.svg │ │ │ │ │ │ ├── xfpm-battery-040.svg │ │ │ │ │ │ ├── xfpm-battery-060-charging.svg │ │ │ │ │ │ ├── xfpm-battery-060.svg │ │ │ │ │ │ ├── xfpm-battery-080-charging.svg │ │ │ │ │ │ ├── xfpm-battery-080.svg │ │ │ │ │ │ ├── xfpm-battery-100-charging.svg │ │ │ │ │ │ ├── xfpm-battery-100.svg │ │ │ │ │ │ ├── xfpm-battery-caution-charging.svg │ │ │ │ │ │ ├── xfpm-battery-caution.svg │ │ │ │ │ │ ├── xfpm-battery-charged.svg │ │ │ │ │ │ ├── xfpm-battery-critical-charging.svg │ │ │ │ │ │ ├── xfpm-battery-critical.svg │ │ │ │ │ │ ├── xfpm-battery-empty.svg │ │ │ │ │ │ ├── xfpm-battery-full-charging.svg │ │ │ │ │ │ ├── xfpm-battery-full.svg │ │ │ │ │ │ ├── xfpm-battery-good-charging.svg │ │ │ │ │ │ ├── xfpm-battery-good.svg │ │ │ │ │ │ ├── xfpm-battery-low-charging.svg │ │ │ │ │ │ ├── xfpm-battery-low.svg │ │ │ │ │ │ ├── xfpm-battery-missing.svg │ │ │ │ │ │ ├── xfpm-battery-ok-charging.svg │ │ │ │ │ │ ├── xfpm-battery-ok.svg │ │ │ │ │ │ ├── xfpm-primary-000-charging.svg │ │ │ │ │ │ ├── xfpm-primary-000.svg │ │ │ │ │ │ ├── xfpm-primary-020-charging.svg │ │ │ │ │ │ ├── xfpm-primary-020.svg │ │ │ │ │ │ ├── xfpm-primary-040-charging.svg │ │ │ │ │ │ ├── xfpm-primary-040.svg │ │ │ │ │ │ ├── xfpm-primary-060-charging.svg │ │ │ │ │ │ ├── xfpm-primary-060.svg │ │ │ │ │ │ ├── xfpm-primary-080-charging.svg │ │ │ │ │ │ ├── xfpm-primary-080.svg │ │ │ │ │ │ ├── xfpm-primary-100-charging.svg │ │ │ │ │ │ ├── xfpm-primary-100.svg │ │ │ │ │ │ ├── xfpm-primary-caution-charging.svg │ │ │ │ │ │ ├── xfpm-primary-caution.svg │ │ │ │ │ │ ├── xfpm-primary-charged.svg │ │ │ │ │ │ ├── xfpm-primary-critical-charging.svg │ │ │ │ │ │ ├── xfpm-primary-critical.svg │ │ │ │ │ │ ├── xfpm-primary-empty.svg │ │ │ │ │ │ ├── xfpm-primary-full-charging.svg │ │ │ │ │ │ ├── xfpm-primary-full.svg │ │ │ │ │ │ ├── xfpm-primary-good-charging.svg │ │ │ │ │ │ ├── xfpm-primary-good.svg │ │ │ │ │ │ ├── xfpm-primary-low-charging.svg │ │ │ │ │ │ ├── xfpm-primary-low.svg │ │ │ │ │ │ ├── xfpm-primary-missing.svg │ │ │ │ │ │ ├── xfpm-primary-ok-charging.svg │ │ │ │ │ │ └── xfpm-primary-ok.svg │ │ │ │ │ │ ├── symbolic │ │ │ │ │ │ ├── account-logged-in-symbolic.svg │ │ │ │ │ │ ├── airplane-mode-symbolic.svg │ │ │ │ │ │ ├── alarm-symbolic.svg │ │ │ │ │ │ ├── appointment-missed-symbolic.svg │ │ │ │ │ │ ├── appointment-soon-symbolic.svg │ │ │ │ │ │ ├── audio-input-microphone-high-symbolic.svg │ │ │ │ │ │ ├── audio-input-microphone-low-symbolic.svg │ │ │ │ │ │ ├── audio-input-microphone-medium-symbolic.svg │ │ │ │ │ │ ├── audio-input-microphone-muted-symbolic.svg │ │ │ │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ │ │ │ ├── avatar-default-symbolic.svg │ │ │ │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ │ │ │ ├── battery-caution-symbolic.svg │ │ │ │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ │ │ │ ├── battery-empty-symbolic.svg │ │ │ │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ │ │ │ ├── battery-full-symbolic.svg │ │ │ │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ │ │ │ ├── battery-good-symbolic.svg │ │ │ │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ │ │ │ ├── battery-low-symbolic.svg │ │ │ │ │ │ ├── battery-missing-symbolic.svg │ │ │ │ │ │ ├── bluetooth-active-symbolic.svg │ │ │ │ │ │ ├── bluetooth-disabled-symbolic.svg │ │ │ │ │ │ ├── call-missed-symbolic.svg │ │ │ │ │ │ ├── changes-allow-symbolic.svg │ │ │ │ │ │ ├── changes-prevent-symbolic.svg │ │ │ │ │ │ ├── channel-insecure-symbolic.svg │ │ │ │ │ │ ├── channel-secure-symbolic.svg │ │ │ │ │ │ ├── checkbox-checked-symbolic.svg │ │ │ │ │ │ ├── checkbox-mixed-symbolic.svg │ │ │ │ │ │ ├── checkbox-symbolic.svg │ │ │ │ │ │ ├── computer-fail-symbolic.svg │ │ │ │ │ │ ├── content-loading-symbolic.svg │ │ │ │ │ │ ├── dialog-error-symbolic.svg │ │ │ │ │ │ ├── dialog-information-symbolic.svg │ │ │ │ │ │ ├── dialog-password-symbolic.svg │ │ │ │ │ │ ├── dialog-question-symbolic.svg │ │ │ │ │ │ ├── dialog-warning-symbolic.svg │ │ │ │ │ │ ├── display-brightness-symbolic.svg │ │ │ │ │ │ ├── face-monkey-symbolic.svg │ │ │ │ │ │ ├── gtk-dialog-warning-symbolic.svg │ │ │ │ │ │ ├── image-loading-symbolic.svg │ │ │ │ │ │ ├── keyboard-brightness-symbolic.svg │ │ │ │ │ │ ├── mail-attachment-symbolic.svg │ │ │ │ │ │ ├── mail-read-symbolic.svg │ │ │ │ │ │ ├── mail-replied-symbolic.svg │ │ │ │ │ │ ├── mail-unread-symbolic.svg │ │ │ │ │ │ ├── microphone-sensitivity-high-symbolic.svg │ │ │ │ │ │ ├── microphone-sensitivity-low-symbolic.svg │ │ │ │ │ │ ├── microphone-sensitivity-medium-symbolic.svg │ │ │ │ │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ │ │ │ │ ├── my-caffeine-off-symbolic.svg │ │ │ │ │ │ ├── my-caffeine-on-symbolic.svg │ │ │ │ │ │ ├── mymail-symbolic.svg │ │ │ │ │ │ ├── network-cellular-3g-symbolic.svg │ │ │ │ │ │ ├── network-cellular-4g-symbolic.svg │ │ │ │ │ │ ├── network-cellular-acquiring-symbolic.svg │ │ │ │ │ │ ├── network-cellular-cdma-1x-symbolic.svg │ │ │ │ │ │ ├── network-cellular-connected-symbolic.svg │ │ │ │ │ │ ├── network-cellular-edge-symbolic.svg │ │ │ │ │ │ ├── network-cellular-gprs-symbolic.svg │ │ │ │ │ │ ├── network-cellular-hspa-symbolic.svg │ │ │ │ │ │ ├── network-cellular-no-route-symbolic.svg │ │ │ │ │ │ ├── network-cellular-offline-symbolic.svg │ │ │ │ │ │ ├── network-cellular-signal-excellent-symbolic.svg │ │ │ │ │ │ ├── network-cellular-signal-good-symbolic.svg │ │ │ │ │ │ ├── network-cellular-signal-none-symbolic.svg │ │ │ │ │ │ ├── network-cellular-signal-ok-symbolic.svg │ │ │ │ │ │ ├── network-cellular-signal-weak-symbolic.svg │ │ │ │ │ │ ├── network-cellular-umts-symbolic.svg │ │ │ │ │ │ ├── network-error-symbolic.svg │ │ │ │ │ │ ├── network-idle-symbolic.svg │ │ │ │ │ │ ├── network-offline-symbolic.svg │ │ │ │ │ │ ├── network-receive-symbolic.svg │ │ │ │ │ │ ├── network-transmit-receive-symbolic.svg │ │ │ │ │ │ ├── network-transmit-symbolic.svg │ │ │ │ │ │ ├── network-vpn-acquiring-symbolic.svg │ │ │ │ │ │ ├── network-vpn-symbolic.svg │ │ │ │ │ │ ├── network-wired-acquiring-symbolic.svg │ │ │ │ │ │ ├── network-wired-disconnected-symbolic.svg │ │ │ │ │ │ ├── network-wired-no-route-symbolic.svg │ │ │ │ │ │ ├── network-wired-offline-symbolic.svg │ │ │ │ │ │ ├── network-wired-symbolic.svg │ │ │ │ │ │ ├── network-wireless-acquiring-symbolic.svg │ │ │ │ │ │ ├── network-wireless-connected-symbolic.svg │ │ │ │ │ │ ├── network-wireless-encrypted-symbolic.svg │ │ │ │ │ │ ├── network-wireless-hotspot-symbolic.svg │ │ │ │ │ │ ├── network-wireless-no-route-symbolic.svg │ │ │ │ │ │ ├── network-wireless-offline-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-good-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-none-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ │ │ │ │ ├── night-light-symbolic.svg │ │ │ │ │ │ ├── nm-device-wired-secure.svg │ │ │ │ │ │ ├── nm-device-wired.svg │ │ │ │ │ │ ├── nm-no-connection.svg │ │ │ │ │ │ ├── nm-signal-0-secure.svg │ │ │ │ │ │ ├── nm-signal-0.svg │ │ │ │ │ │ ├── nm-signal-00-secure.svg │ │ │ │ │ │ ├── nm-signal-00.svg │ │ │ │ │ │ ├── nm-signal-100-secure.svg │ │ │ │ │ │ ├── nm-signal-100.svg │ │ │ │ │ │ ├── nm-signal-25-secure.svg │ │ │ │ │ │ ├── nm-signal-25.svg │ │ │ │ │ │ ├── nm-signal-50-secure.svg │ │ │ │ │ │ ├── nm-signal-50.svg │ │ │ │ │ │ ├── nm-signal-75-secure.svg │ │ │ │ │ │ ├── nm-signal-75.svg │ │ │ │ │ │ ├── nm-vpn-active-lock.svg │ │ │ │ │ │ ├── nm-vpn-lock.svg │ │ │ │ │ │ ├── non-starred-symbolic.svg │ │ │ │ │ │ ├── notification-disabled-symbolic.svg │ │ │ │ │ │ ├── notification-new-symbolic.svg │ │ │ │ │ │ ├── notification-symbolic.svg │ │ │ │ │ │ ├── notifications-disabled-symbolic.svg │ │ │ │ │ │ ├── notifications-new-symbolic.svg │ │ │ │ │ │ ├── notifications-symbolic.svg │ │ │ │ │ │ ├── pamac-tray-no-update.svg │ │ │ │ │ │ ├── pamac-tray-update.svg │ │ │ │ │ │ ├── printer-error-symbolic.svg │ │ │ │ │ │ ├── printer-printing-symbolic.svg │ │ │ │ │ │ ├── printer-warning-symbolic.svg │ │ │ │ │ │ ├── process-completed-symbolic.svg │ │ │ │ │ │ ├── process-error-symbolic.svg │ │ │ │ │ │ ├── process-working-symbolic.svg │ │ │ │ │ │ ├── radio-checked-symbolic.svg │ │ │ │ │ │ ├── radio-mixed-symbolic.svg │ │ │ │ │ │ ├── radio-symbolic.svg │ │ │ │ │ │ ├── rotation-allowed-symbolic.svg │ │ │ │ │ │ ├── rotation-locked-symbolic.svg │ │ │ │ │ │ ├── security-high-symbolic.svg │ │ │ │ │ │ ├── security-low-symbolic.svg │ │ │ │ │ │ ├── security-medium-symbolic.svg │ │ │ │ │ │ ├── semi-starred-rtl-symbolic.svg │ │ │ │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ │ │ │ ├── semi-starred-symbolic.svg │ │ │ │ │ │ ├── software-update-available-symbolic.svg │ │ │ │ │ │ ├── software-update-urgent-symbolic.svg │ │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ │ ├── task-due-symbolic.svg │ │ │ │ │ │ ├── task-past-due-symbolic.svg │ │ │ │ │ │ ├── touchpad-disabled-symbolic.svg │ │ │ │ │ │ ├── user-available-symbolic.svg │ │ │ │ │ │ ├── user-away-symbolic.svg │ │ │ │ │ │ ├── user-busy-symbolic.svg │ │ │ │ │ │ ├── user-idle-symbolic.svg │ │ │ │ │ │ ├── user-invisible-symbolic.svg │ │ │ │ │ │ ├── user-offline-symbolic.svg │ │ │ │ │ │ ├── user-status-pending-symbolic.svg │ │ │ │ │ │ ├── view-private-symbolic.svg │ │ │ │ │ │ ├── view-wrapped-rtl-symbolic.svg │ │ │ │ │ │ ├── view-wrapped-symbolic-rtl.svg │ │ │ │ │ │ ├── view-wrapped-symbolic.svg │ │ │ │ │ │ ├── weather-clear-night-symbolic.svg │ │ │ │ │ │ ├── weather-clear-symbolic.svg │ │ │ │ │ │ ├── weather-few-clouds-night-symbolic.svg │ │ │ │ │ │ ├── weather-few-clouds-symbolic.svg │ │ │ │ │ │ ├── weather-fog-symbolic.svg │ │ │ │ │ │ ├── weather-overcast-symbolic.svg │ │ │ │ │ │ ├── weather-severe-alert-symbolic.svg │ │ │ │ │ │ ├── weather-showers-scattered-symbolic.svg │ │ │ │ │ │ ├── weather-showers-symbolic.svg │ │ │ │ │ │ ├── weather-snow-symbolic.svg │ │ │ │ │ │ └── weather-storm-symbolic.svg │ │ │ │ │ │ └── symbolic@2x │ │ │ │ │ │ ├── account-logged-in-symbolic.svg │ │ │ │ │ │ ├── airplane-mode-symbolic.svg │ │ │ │ │ │ ├── alarm-symbolic.svg │ │ │ │ │ │ ├── appointment-missed-symbolic.svg │ │ │ │ │ │ ├── appointment-soon-symbolic.svg │ │ │ │ │ │ ├── audio-input-microphone-high-symbolic.svg │ │ │ │ │ │ ├── audio-input-microphone-low-symbolic.svg │ │ │ │ │ │ ├── audio-input-microphone-medium-symbolic.svg │ │ │ │ │ │ ├── audio-input-microphone-muted-symbolic.svg │ │ │ │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ │ │ │ ├── avatar-default-symbolic.svg │ │ │ │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ │ │ │ ├── battery-caution-symbolic.svg │ │ │ │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ │ │ │ ├── battery-empty-symbolic.svg │ │ │ │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ │ │ │ ├── battery-full-symbolic.svg │ │ │ │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ │ │ │ ├── battery-good-symbolic.svg │ │ │ │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ │ │ │ ├── battery-low-symbolic.svg │ │ │ │ │ │ ├── battery-missing-symbolic.svg │ │ │ │ │ │ ├── bluetooth-active-symbolic.svg │ │ │ │ │ │ ├── bluetooth-disabled-symbolic.svg │ │ │ │ │ │ ├── call-missed-symbolic.svg │ │ │ │ │ │ ├── changes-allow-symbolic.svg │ │ │ │ │ │ ├── changes-prevent-symbolic.svg │ │ │ │ │ │ ├── channel-insecure-symbolic.svg │ │ │ │ │ │ ├── channel-secure-symbolic.svg │ │ │ │ │ │ ├── checkbox-checked-symbolic.svg │ │ │ │ │ │ ├── checkbox-mixed-symbolic.svg │ │ │ │ │ │ ├── checkbox-symbolic.svg │ │ │ │ │ │ ├── computer-fail-symbolic.svg │ │ │ │ │ │ ├── content-loading-symbolic.svg │ │ │ │ │ │ ├── dialog-error-symbolic.svg │ │ │ │ │ │ ├── dialog-information-symbolic.svg │ │ │ │ │ │ ├── dialog-password-symbolic.svg │ │ │ │ │ │ ├── dialog-question-symbolic.svg │ │ │ │ │ │ ├── dialog-warning-symbolic.svg │ │ │ │ │ │ ├── display-brightness-symbolic.svg │ │ │ │ │ │ ├── face-monkey-symbolic.svg │ │ │ │ │ │ ├── gtk-dialog-warning-symbolic.svg │ │ │ │ │ │ ├── image-loading-symbolic.svg │ │ │ │ │ │ ├── keyboard-brightness-symbolic.svg │ │ │ │ │ │ ├── mail-attachment-symbolic.svg │ │ │ │ │ │ ├── mail-read-symbolic.svg │ │ │ │ │ │ ├── mail-replied-symbolic.svg │ │ │ │ │ │ ├── mail-unread-symbolic.svg │ │ │ │ │ │ ├── microphone-sensitivity-high-symbolic.svg │ │ │ │ │ │ ├── microphone-sensitivity-low-symbolic.svg │ │ │ │ │ │ ├── microphone-sensitivity-medium-symbolic.svg │ │ │ │ │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ │ │ │ │ ├── my-caffeine-off-symbolic.svg │ │ │ │ │ │ ├── my-caffeine-on-symbolic.svg │ │ │ │ │ │ ├── mymail-symbolic.svg │ │ │ │ │ │ ├── network-cellular-3g-symbolic.svg │ │ │ │ │ │ ├── network-cellular-4g-symbolic.svg │ │ │ │ │ │ ├── network-cellular-acquiring-symbolic.svg │ │ │ │ │ │ ├── network-cellular-cdma-1x-symbolic.svg │ │ │ │ │ │ ├── network-cellular-connected-symbolic.svg │ │ │ │ │ │ ├── network-cellular-edge-symbolic.svg │ │ │ │ │ │ ├── network-cellular-gprs-symbolic.svg │ │ │ │ │ │ ├── network-cellular-hspa-symbolic.svg │ │ │ │ │ │ ├── network-cellular-no-route-symbolic.svg │ │ │ │ │ │ ├── network-cellular-offline-symbolic.svg │ │ │ │ │ │ ├── network-cellular-signal-excellent-symbolic.svg │ │ │ │ │ │ ├── network-cellular-signal-good-symbolic.svg │ │ │ │ │ │ ├── network-cellular-signal-none-symbolic.svg │ │ │ │ │ │ ├── network-cellular-signal-ok-symbolic.svg │ │ │ │ │ │ ├── network-cellular-signal-weak-symbolic.svg │ │ │ │ │ │ ├── network-cellular-umts-symbolic.svg │ │ │ │ │ │ ├── network-error-symbolic.svg │ │ │ │ │ │ ├── network-idle-symbolic.svg │ │ │ │ │ │ ├── network-offline-symbolic.svg │ │ │ │ │ │ ├── network-receive-symbolic.svg │ │ │ │ │ │ ├── network-transmit-receive-symbolic.svg │ │ │ │ │ │ ├── network-transmit-symbolic.svg │ │ │ │ │ │ ├── network-vpn-acquiring-symbolic.svg │ │ │ │ │ │ ├── network-vpn-symbolic.svg │ │ │ │ │ │ ├── network-wired-acquiring-symbolic.svg │ │ │ │ │ │ ├── network-wired-disconnected-symbolic.svg │ │ │ │ │ │ ├── network-wired-no-route-symbolic.svg │ │ │ │ │ │ ├── network-wired-offline-symbolic.svg │ │ │ │ │ │ ├── network-wired-symbolic.svg │ │ │ │ │ │ ├── network-wireless-acquiring-symbolic.svg │ │ │ │ │ │ ├── network-wireless-connected-symbolic.svg │ │ │ │ │ │ ├── network-wireless-encrypted-symbolic.svg │ │ │ │ │ │ ├── network-wireless-hotspot-symbolic.svg │ │ │ │ │ │ ├── network-wireless-no-route-symbolic.svg │ │ │ │ │ │ ├── network-wireless-offline-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-good-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-none-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ │ │ │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ │ │ │ │ ├── night-light-symbolic.svg │ │ │ │ │ │ ├── nm-device-wired-secure.svg │ │ │ │ │ │ ├── nm-device-wired.svg │ │ │ │ │ │ ├── nm-no-connection.svg │ │ │ │ │ │ ├── nm-signal-0-secure.svg │ │ │ │ │ │ ├── nm-signal-0.svg │ │ │ │ │ │ ├── nm-signal-00-secure.svg │ │ │ │ │ │ ├── nm-signal-00.svg │ │ │ │ │ │ ├── nm-signal-100-secure.svg │ │ │ │ │ │ ├── nm-signal-100.svg │ │ │ │ │ │ ├── nm-signal-25-secure.svg │ │ │ │ │ │ ├── nm-signal-25.svg │ │ │ │ │ │ ├── nm-signal-50-secure.svg │ │ │ │ │ │ ├── nm-signal-50.svg │ │ │ │ │ │ ├── nm-signal-75-secure.svg │ │ │ │ │ │ ├── nm-signal-75.svg │ │ │ │ │ │ ├── nm-vpn-active-lock.svg │ │ │ │ │ │ ├── nm-vpn-lock.svg │ │ │ │ │ │ ├── non-starred-symbolic.svg │ │ │ │ │ │ ├── notification-disabled-symbolic.svg │ │ │ │ │ │ ├── notification-new-symbolic.svg │ │ │ │ │ │ ├── notification-symbolic.svg │ │ │ │ │ │ ├── notifications-disabled-symbolic.svg │ │ │ │ │ │ ├── notifications-new-symbolic.svg │ │ │ │ │ │ ├── notifications-symbolic.svg │ │ │ │ │ │ ├── pamac-tray-no-update.svg │ │ │ │ │ │ ├── pamac-tray-update.svg │ │ │ │ │ │ ├── printer-error-symbolic.svg │ │ │ │ │ │ ├── printer-printing-symbolic.svg │ │ │ │ │ │ ├── printer-warning-symbolic.svg │ │ │ │ │ │ ├── process-completed-symbolic.svg │ │ │ │ │ │ ├── process-error-symbolic.svg │ │ │ │ │ │ ├── process-working-symbolic.svg │ │ │ │ │ │ ├── radio-checked-symbolic.svg │ │ │ │ │ │ ├── radio-mixed-symbolic.svg │ │ │ │ │ │ ├── radio-symbolic.svg │ │ │ │ │ │ ├── rotation-allowed-symbolic.svg │ │ │ │ │ │ ├── rotation-locked-symbolic.svg │ │ │ │ │ │ ├── security-high-symbolic.svg │ │ │ │ │ │ ├── security-low-symbolic.svg │ │ │ │ │ │ ├── security-medium-symbolic.svg │ │ │ │ │ │ ├── semi-starred-rtl-symbolic.svg │ │ │ │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ │ │ │ ├── semi-starred-symbolic.svg │ │ │ │ │ │ ├── software-update-available-symbolic.svg │ │ │ │ │ │ ├── software-update-urgent-symbolic.svg │ │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ │ ├── task-due-symbolic.svg │ │ │ │ │ │ ├── task-past-due-symbolic.svg │ │ │ │ │ │ ├── touchpad-disabled-symbolic.svg │ │ │ │ │ │ ├── user-available-symbolic.svg │ │ │ │ │ │ ├── user-away-symbolic.svg │ │ │ │ │ │ ├── user-busy-symbolic.svg │ │ │ │ │ │ ├── user-idle-symbolic.svg │ │ │ │ │ │ ├── user-invisible-symbolic.svg │ │ │ │ │ │ ├── user-offline-symbolic.svg │ │ │ │ │ │ ├── user-status-pending-symbolic.svg │ │ │ │ │ │ ├── view-private-symbolic.svg │ │ │ │ │ │ ├── view-wrapped-rtl-symbolic.svg │ │ │ │ │ │ ├── view-wrapped-symbolic-rtl.svg │ │ │ │ │ │ ├── view-wrapped-symbolic.svg │ │ │ │ │ │ ├── weather-clear-night-symbolic.svg │ │ │ │ │ │ ├── weather-clear-symbolic.svg │ │ │ │ │ │ ├── weather-few-clouds-night-symbolic.svg │ │ │ │ │ │ ├── weather-few-clouds-symbolic.svg │ │ │ │ │ │ ├── weather-fog-symbolic.svg │ │ │ │ │ │ ├── weather-overcast-symbolic.svg │ │ │ │ │ │ ├── weather-severe-alert-symbolic.svg │ │ │ │ │ │ ├── weather-showers-scattered-symbolic.svg │ │ │ │ │ │ ├── weather-showers-symbolic.svg │ │ │ │ │ │ ├── weather-snow-symbolic.svg │ │ │ │ │ │ └── weather-storm-symbolic.svg │ │ │ │ └── La-Sierra-Light │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── actions │ │ │ │ │ ├── 22x22 │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ ├── TeX_logo.svg │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ ├── address-book-insert.svg │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ ├── addressbook.svg │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ ├── applications-other.svg │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ ├── appointment_new.svg │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ ├── arrow-top-double.svg │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ ├── audio-cd-duplicate.svg │ │ │ │ │ │ ├── audio-cd-new.svg │ │ │ │ │ │ ├── audio-off.svg │ │ │ │ │ │ ├── audio-on.svg │ │ │ │ │ │ ├── audio-ready.svg │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ ├── automated-tasks.svg │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ ├── bookmark-add.svg │ │ │ │ │ │ ├── bookmark-list-add.svg │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ ├── bookmark-view.svg │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ ├── bookmark_list-add.svg │ │ │ │ │ │ ├── bookmark_list_add.svg │ │ │ │ │ │ ├── bookmarks-list-add.svg │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ ├── bookmarks_list-add.svg │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ ├── button-cancel.svg │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ ├── camera-off.svg │ │ │ │ │ │ ├── camera-on.svg │ │ │ │ │ │ ├── camera-ready.svg │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ ├── catfish.svg │ │ │ │ │ │ ├── cdplayer-eject.svg │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ ├── collection-refresh-amarok.svg │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ ├── dialog-fill-and-stroke.svg │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ ├── dialog-layers.svg │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ ├── dialog-rows-and-columns.svg │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ ├── dialog-text-and-font.svg │ │ │ │ │ │ ├── dialog-tile-clones.svg │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ ├── document-export-local.svg │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ ├── document-import-local.svg │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ ├── document-import-table.svg │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ ├── document-info.svg │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ ├── document-page-setup.svg │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ ├── edit-duplicate.svg │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ ├── edit-find-email.svg │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ ├── edit-paste-style.svg │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ ├── edit-redo-amarok.svg │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ ├── edit-select-all-layers.svg │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ ├── edit-undo-amarok.svg │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ ├── epiphany-bookmarks.svg │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ ├── epiphany-secure.svg │ │ │ │ │ │ ├── epiphany-unsecure.svg │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ ├── file-find.svg │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ ├── file_new.svg │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ ├── filesaveas.svg │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ ├── finish.svg │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ ├── flip-horizontal.svg │ │ │ │ │ │ ├── folder-copy.svg │ │ │ │ │ │ ├── folder-move.svg │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ ├── forward.svg │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ ├── gnome-fs-bookmark.svg │ │ │ │ │ │ ├── gnome-help.svg │ │ │ │ │ │ ├── gnome-run.svg │ │ │ │ │ │ ├── gnome-shutdown.svg │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ ├── go-first-rtl.svg │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ ├── go-last-rtl.svg │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ ├── go-previous-rtl.svg │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ ├── gtk-info.svg │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ ├── gtk-jump-to-rtl.svg │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ ├── gtk-redo-ltr.svg │ │ │ │ │ │ ├── gtk-redo-rtl.svg │ │ │ │ │ │ ├── gtk-redo.ltr.svg │ │ │ │ │ │ ├── gtk-redo.svg │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ ├── gtk-save-all.svg │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ ├── gtk-search.svg │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ ├── gtk-sort-ascending.svg │ │ │ │ │ │ ├── gtk-sort-descending.svg │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ ├── gtk-undo-ltr.svg │ │ │ │ │ │ ├── gtk-undo-rtl.svg │ │ │ │ │ │ ├── gtk-undo.svg │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ ├── gtk-zoom-100.svg │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ ├── gtk-zoom-in.svg │ │ │ │ │ │ ├── gtk-zoom-out.svg │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ ├── help-faq.svg │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ ├── help.svg │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ ├── image-zoom-in.svg │ │ │ │ │ │ ├── image-zoom-out.svg │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ ├── insert-pause.svg │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ ├── iso-image-burn.svg │ │ │ │ │ │ ├── iso-image-iso.svg │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ ├── jump-today.svg │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ ├── kdenlive-track-has-effect.svg │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ ├── kfm-home.svg │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ ├── knotes_close.svg │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ ├── layer-bottom.svg │ │ │ │ │ │ ├── layer-delete.svg │ │ │ │ │ │ ├── layer-duplicate.svg │ │ │ │ │ │ ├── layer-lower.svg │ │ │ │ │ │ ├── layer-new.svg │ │ │ │ │ │ ├── layer-next.svg │ │ │ │ │ │ ├── layer-previous.svg │ │ │ │ │ │ ├── layer-raise.svg │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ ├── layer-top.svg │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ ├── locationbar-erase.svg │ │ │ │ │ │ ├── lock-insecure.svg │ │ │ │ │ │ ├── lock-secure.svg │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ ├── locked.svg │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ ├── mail-encrytped-full.svg │ │ │ │ │ │ ├── mail-encrytped-part.svg │ │ │ │ │ │ ├── mail-encrytped.svg │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ ├── mail-folder-sent.svg │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ ├── mail-mark-not-junk.svg │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ ├── mail-new.svg │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ ├── mail-reply.svg │ │ │ │ │ │ ├── mail-send-receive.svg │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ ├── mail_send.svg │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ ├── media-optical-audio-new.svg │ │ │ │ │ │ ├── media-optical-blank-symbolic.svg │ │ │ │ │ │ ├── media-optical-burn.svg │ │ │ │ │ │ ├── media-optical-copy.svg │ │ │ │ │ │ ├── media-optical-data-new.svg │ │ │ │ │ │ ├── media-optical-video-new.svg │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ ├── media-playback-play-pause.svg │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ ├── media-playlist-no-repeat.svg │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ ├── media-playlist-repeat-once.svg │ │ │ │ │ │ ├── media-playlist-repeat-one.svg │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ ├── media-write-cd.svg │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ ├── mic-off.svg │ │ │ │ │ │ ├── mic-on.svg │ │ │ │ │ │ ├── mic-ready.svg │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ ├── mixer-digital.svg │ │ │ │ │ │ ├── mixer-line.svg │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ ├── music-library.svg │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ ├── notebook-new.svg │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ ├── ok.svg │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ ├── path-break-apart.svg │ │ │ │ │ │ ├── path-combine.svg │ │ │ │ │ │ ├── path-cut.svg │ │ │ │ │ │ ├── path-difference.svg │ │ │ │ │ │ ├── path-division.svg │ │ │ │ │ │ ├── path-exclusion.svg │ │ │ │ │ │ ├── path-intersection.svg │ │ │ │ │ │ ├── path-union.svg │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ ├── pixelart-trace.svg │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ ├── player-end.svg │ │ │ │ │ │ ├── player-fwd.svg │ │ │ │ │ │ ├── player-new.svg │ │ │ │ │ │ ├── player-pause.svg │ │ │ │ │ │ ├── player-play.svg │ │ │ │ │ │ ├── player-record.svg │ │ │ │ │ │ ├── player-rew.svg │ │ │ │ │ │ ├── player-start.svg │ │ │ │ │ │ ├── player-stop.svg │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ ├── player_new.svg │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ ├── preferences-other2.svg │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ ├── preview-file.svg │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ ├── ratio.svg │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ ├── redhat-home.svg │ │ │ │ │ │ ├── redo.svg │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ ├── retweet.svg │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ ├── rhythmbox-set-star.svg │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ ├── rotate.svg │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ ├── selection-move-to-layer-above.svg │ │ │ │ │ │ ├── selection-move-to-layer-below.svg │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ ├── shift-down-y.svg │ │ │ │ │ │ ├── shift-left-x.svg │ │ │ │ │ │ ├── shift-right-x.svg │ │ │ │ │ │ ├── shift-up-y.svg │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ ├── show-guides.svg │ │ │ │ │ │ ├── show-hidden.svg │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ ├── speed-high.svg │ │ │ │ │ │ ├── speed-low.svg │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ ├── stock-exit.svg │ │ │ │ │ │ ├── stock-help.svg │ │ │ │ │ │ ├── stock-home.svg │ │ │ │ │ │ ├── stock-new-adress-book.svg │ │ │ │ │ │ ├── stock-refresh.svg │ │ │ │ │ │ ├── stock-refresh2.svg │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ ├── stock_bookmark.svg │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ ├── stock_calc-cancel.svg │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ ├── stock_edit.svg │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ ├── stock_folder-copy.svg │ │ │ │ │ │ ├── stock_folder-move.svg │ │ │ │ │ │ ├── stock_folder-properties.svg │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ ├── stock_help.svg │ │ │ │ │ │ ├── stock_home.svg │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ ├── stock_mail-filters-apply.svg │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ ├── stock_mail-send-receive.svg │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ ├── stock_media-rev.svg │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ ├── stock_new-card.svg │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ ├── stock_print-setup.svg │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ ├── stock_repeat.svg │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ ├── stock_save-all.svg │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ ├── stock_search-and-replace.svg │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ ├── stock_sent-mail.svg │ │ │ │ │ │ ├── stock_shuffle.svg │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ ├── stock_zoom-1.svg │ │ │ │ │ │ ├── stock_zoom-in.svg │ │ │ │ │ │ ├── stock_zoom-out.svg │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ ├── symbols.svg │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ ├── system-restart.svg │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ ├── tags.svg │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ ├── tracker-search-tool.svg │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ ├── turtle-blue.svg │ │ │ │ │ │ ├── turtle-grey.svg │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ ├── utilities.svg │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ ├── view-list-compact.svg │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ ├── view-list-details2.svg │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ ├── view-list-icons2.svg │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ ├── view-list.svg │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ ├── view-readermode-active.svg │ │ │ │ │ │ ├── view-readermode.svg │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ ├── view_choose.svg │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ ├── viewmag+.svg │ │ │ │ │ │ ├── viewmag-.svg │ │ │ │ │ │ ├── viewmag1.svg │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ ├── window-fullscreen.svg │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ ├── xfce-system-exit.svg │ │ │ │ │ │ ├── xfce4-appfinder.svg │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ ├── xy-curve.svg │ │ │ │ │ │ ├── xy-equation-curve.svg │ │ │ │ │ │ ├── xy-fit-curve.svg │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ ├── zoom-fit-drawing.svg │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ ├── zoom-fit.svg │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ ├── 22x22@2x │ │ │ │ │ │ ├── Info-amarok.svg │ │ │ │ │ │ ├── TeX_logo.svg │ │ │ │ │ │ ├── acrobat.svg │ │ │ │ │ │ ├── action-albumfolder-importdir2.svg │ │ │ │ │ │ ├── action-rss_tag.svg │ │ │ │ │ │ ├── add-files-to-archive.svg │ │ │ │ │ │ ├── add-folder-to-archive.svg │ │ │ │ │ │ ├── add-placemark.svg │ │ │ │ │ │ ├── add.svg │ │ │ │ │ │ ├── address-book-insert.svg │ │ │ │ │ │ ├── address-book-new.svg │ │ │ │ │ │ ├── addressbook.svg │ │ │ │ │ │ ├── adjustcurves.svg │ │ │ │ │ │ ├── adjusthsl.svg │ │ │ │ │ │ ├── adjustlevels.svg │ │ │ │ │ │ ├── adjustrgb.svg │ │ │ │ │ │ ├── adress-book-new.svg │ │ │ │ │ │ ├── akonadi-phone-home.svg │ │ │ │ │ │ ├── akonadiconsole.svg │ │ │ │ │ │ ├── albumfolder-importdir.svg │ │ │ │ │ │ ├── albumfolder-importimages.svg │ │ │ │ │ │ ├── albumfolder-new.svg │ │ │ │ │ │ ├── albumfolder-properties.svg │ │ │ │ │ │ ├── albumfolder-user-trash.svg │ │ │ │ │ │ ├── align-horizontal-baseline.svg │ │ │ │ │ │ ├── align-horizontal-bottom-out.svg │ │ │ │ │ │ ├── align-horizontal-center.svg │ │ │ │ │ │ ├── align-horizontal-left-out.svg │ │ │ │ │ │ ├── align-horizontal-left-to-anchor.svg │ │ │ │ │ │ ├── align-horizontal-left.svg │ │ │ │ │ │ ├── align-horizontal-right-out.svg │ │ │ │ │ │ ├── align-horizontal-right-to-anchor.svg │ │ │ │ │ │ ├── align-horizontal-right.svg │ │ │ │ │ │ ├── align-horizontal-top-out.svg │ │ │ │ │ │ ├── align-vertical-baseline.svg │ │ │ │ │ │ ├── align-vertical-bottom-out.svg │ │ │ │ │ │ ├── align-vertical-bottom-to-anchor.svg │ │ │ │ │ │ ├── align-vertical-bottom.svg │ │ │ │ │ │ ├── align-vertical-center.svg │ │ │ │ │ │ ├── align-vertical-top-out.svg │ │ │ │ │ │ ├── align-vertical-top-to-anchor.svg │ │ │ │ │ │ ├── align-vertical-top.svg │ │ │ │ │ │ ├── amarok_artist.svg │ │ │ │ │ │ ├── amarok_cart_add.svg │ │ │ │ │ │ ├── amarok_cart_remove.svg │ │ │ │ │ │ ├── amarok_cart_view.svg │ │ │ │ │ │ ├── amarok_change_language.svg │ │ │ │ │ │ ├── amarok_clock.svg │ │ │ │ │ │ ├── amarok_lyrics.svg │ │ │ │ │ │ ├── amarok_playcount.svg │ │ │ │ │ │ ├── amarok_playlist.svg │ │ │ │ │ │ ├── amarok_playlist_refresh.svg │ │ │ │ │ │ ├── amarok_scripts.svg │ │ │ │ │ │ ├── antivignetting.svg │ │ │ │ │ │ ├── application-exit.svg │ │ │ │ │ │ ├── application-menu.svg │ │ │ │ │ │ ├── applications-other.svg │ │ │ │ │ │ ├── appointment-new.svg │ │ │ │ │ │ ├── appointment.svg │ │ │ │ │ │ ├── appointment_new.svg │ │ │ │ │ │ ├── archive-extract.svg │ │ │ │ │ │ ├── archive-insert-directory.svg │ │ │ │ │ │ ├── archive-insert.svg │ │ │ │ │ │ ├── archive-remove.svg │ │ │ │ │ │ ├── arrow-down-double.svg │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ ├── arrow-left-double.svg │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ ├── arrow-right-double.svg │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ ├── arrow-top-double.svg │ │ │ │ │ │ ├── arrow-up-double.svg │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ ├── audio-cd-duplicate.svg │ │ │ │ │ │ ├── audio-cd-new.svg │ │ │ │ │ │ ├── audio-off.svg │ │ │ │ │ │ ├── audio-on.svg │ │ │ │ │ │ ├── audio-ready.svg │ │ │ │ │ │ ├── auto-scale-all.svg │ │ │ │ │ │ ├── auto-scale-x.svg │ │ │ │ │ │ ├── auto-scale-y.svg │ │ │ │ │ │ ├── auto-type.svg │ │ │ │ │ │ ├── autocorrection.svg │ │ │ │ │ │ ├── automated-tasks.svg │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ ├── bitmap-trace.svg │ │ │ │ │ │ ├── blurfx.svg │ │ │ │ │ │ ├── blurimage.svg │ │ │ │ │ │ ├── bonobo-component-browser.svg │ │ │ │ │ │ ├── bookmark-add.svg │ │ │ │ │ │ ├── bookmark-list-add.svg │ │ │ │ │ │ ├── bookmark-new-list.svg │ │ │ │ │ │ ├── bookmark-new.svg │ │ │ │ │ │ ├── bookmark-toolbar.svg │ │ │ │ │ │ ├── bookmark-view.svg │ │ │ │ │ │ ├── bookmark_add.svg │ │ │ │ │ │ ├── bookmark_list-add.svg │ │ │ │ │ │ ├── bookmark_list_add.svg │ │ │ │ │ │ ├── bookmarks-list-add.svg │ │ │ │ │ │ ├── bookmarks-organize.svg │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ ├── bookmarks_list-add.svg │ │ │ │ │ │ ├── bookmarks_list_add.svg │ │ │ │ │ │ ├── bordertool.svg │ │ │ │ │ │ ├── bottom.svg │ │ │ │ │ │ ├── bqm-add.svg │ │ │ │ │ │ ├── bqm-addqueue.svg │ │ │ │ │ │ ├── bqm-commit.svg │ │ │ │ │ │ ├── bqm-diff.svg │ │ │ │ │ │ ├── bqm-remove.svg │ │ │ │ │ │ ├── bqm-rmqueue.svg │ │ │ │ │ │ ├── bqm-update.svg │ │ │ │ │ │ ├── browser-download.svg │ │ │ │ │ │ ├── button-cancel.svg │ │ │ │ │ │ ├── button_cancel.svg │ │ │ │ │ │ ├── bwtonal.svg │ │ │ │ │ │ ├── cab_extract.svg │ │ │ │ │ │ ├── call-start.svg │ │ │ │ │ │ ├── call-stop.svg │ │ │ │ │ │ ├── camera-off.svg │ │ │ │ │ │ ├── camera-on.svg │ │ │ │ │ │ ├── camera-ready.svg │ │ │ │ │ │ ├── cancel.svg │ │ │ │ │ │ ├── catfish.svg │ │ │ │ │ │ ├── cdplayer-eject.svg │ │ │ │ │ │ ├── channelmixer.svg │ │ │ │ │ │ ├── character-set.svg │ │ │ │ │ │ ├── charcoaltool.svg │ │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ ├── chronometer-lap.svg │ │ │ │ │ │ ├── chronometer-pause.svg │ │ │ │ │ │ ├── chronometer-reset.svg │ │ │ │ │ │ ├── chronometer-start.svg │ │ │ │ │ │ ├── chronometer.svg │ │ │ │ │ │ ├── code-block.svg │ │ │ │ │ │ ├── code-class.svg │ │ │ │ │ │ ├── code-context.svg │ │ │ │ │ │ ├── code-function.svg │ │ │ │ │ │ ├── code-typedef.svg │ │ │ │ │ │ ├── code-variable.svg │ │ │ │ │ │ ├── collection-refresh-amarok.svg │ │ │ │ │ │ ├── collection-rescan-amarok.svg │ │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ │ ├── color-gradient.svg │ │ │ │ │ │ ├── color-management.svg │ │ │ │ │ │ ├── color-picker-black.svg │ │ │ │ │ │ ├── color-picker-grey.svg │ │ │ │ │ │ ├── color-picker-white.svg │ │ │ │ │ │ ├── color-picker.svg │ │ │ │ │ │ ├── colorfx.svg │ │ │ │ │ │ ├── colormanagement.svg │ │ │ │ │ │ ├── colorneg.svg │ │ │ │ │ │ ├── colors-chromablue.svg │ │ │ │ │ │ ├── colors-chromagreen.svg │ │ │ │ │ │ ├── colors-chromared.svg │ │ │ │ │ │ ├── colors-luma.svg │ │ │ │ │ │ ├── configure-shortcuts.svg │ │ │ │ │ │ ├── configure-toolbars.svg │ │ │ │ │ │ ├── configure.svg │ │ │ │ │ │ ├── contact-new.svg │ │ │ │ │ │ ├── contrast.svg │ │ │ │ │ │ ├── cursor-arrow.svg │ │ │ │ │ │ ├── curve-connector.svg │ │ │ │ │ │ ├── dashboard-show.svg │ │ │ │ │ │ ├── database-change-key.svg │ │ │ │ │ │ ├── database-index.svg │ │ │ │ │ │ ├── debug-execute-from-cursor.svg │ │ │ │ │ │ ├── debug-execute-to-cursor.svg │ │ │ │ │ │ ├── debug-run-cursor.svg │ │ │ │ │ │ ├── debug-run.svg │ │ │ │ │ │ ├── debug-step-instruction.svg │ │ │ │ │ │ ├── debug-step-into-instruction.svg │ │ │ │ │ │ ├── debug-step-into.svg │ │ │ │ │ │ ├── debug-step-out.svg │ │ │ │ │ │ ├── debug-step-over.svg │ │ │ │ │ │ ├── delete-table-row.svg │ │ │ │ │ │ ├── depth16to8.svg │ │ │ │ │ │ ├── depth8to16.svg │ │ │ │ │ │ ├── dialog-align-and-distribute.svg │ │ │ │ │ │ ├── dialog-apply.svg │ │ │ │ │ │ ├── dialog-cancel.svg │ │ │ │ │ │ ├── dialog-close.svg │ │ │ │ │ │ ├── dialog-fill-and-stroke.svg │ │ │ │ │ │ ├── dialog-filters.svg │ │ │ │ │ │ ├── dialog-icon-preview.svg │ │ │ │ │ │ ├── dialog-input-devices.svg │ │ │ │ │ │ ├── dialog-layers.svg │ │ │ │ │ │ ├── dialog-memory.svg │ │ │ │ │ │ ├── dialog-messages.svg │ │ │ │ │ │ ├── dialog-no.svg │ │ │ │ │ │ ├── dialog-object-properties.svg │ │ │ │ │ │ ├── dialog-ok-apply.svg │ │ │ │ │ │ ├── dialog-ok.svg │ │ │ │ │ │ ├── dialog-rows-and-columns.svg │ │ │ │ │ │ ├── dialog-scripts.svg │ │ │ │ │ │ ├── dialog-text-and-font.svg │ │ │ │ │ │ ├── dialog-tile-clones.svg │ │ │ │ │ │ ├── dialog-transform.svg │ │ │ │ │ │ ├── dialog-xml-editor.svg │ │ │ │ │ │ ├── dialog-yes.svg │ │ │ │ │ │ ├── dirsync.svg │ │ │ │ │ │ ├── distortionfx.svg │ │ │ │ │ │ ├── distribute-graph-directed.svg │ │ │ │ │ │ ├── distribute-graph.svg │ │ │ │ │ │ ├── distribute-horizontal-baseline.svg │ │ │ │ │ │ ├── distribute-horizontal-center.svg │ │ │ │ │ │ ├── distribute-horizontal-equal.svg │ │ │ │ │ │ ├── distribute-horizontal-gaps.svg │ │ │ │ │ │ ├── distribute-horizontal-left.svg │ │ │ │ │ │ ├── distribute-horizontal-margin.svg │ │ │ │ │ │ ├── distribute-horizontal-page.svg │ │ │ │ │ │ ├── distribute-horizontal-right.svg │ │ │ │ │ │ ├── distribute-horizontal-x.svg │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ ├── distribute-randomize.svg │ │ │ │ │ │ ├── distribute-remove-overlaps.svg │ │ │ │ │ │ ├── distribute-unclump.svg │ │ │ │ │ │ ├── distribute-vertical-baseline.svg │ │ │ │ │ │ ├── distribute-vertical-bottom.svg │ │ │ │ │ │ ├── distribute-vertical-center.svg │ │ │ │ │ │ ├── distribute-vertical-equal.svg │ │ │ │ │ │ ├── distribute-vertical-gaps.svg │ │ │ │ │ │ ├── distribute-vertical-margin.svg │ │ │ │ │ │ ├── distribute-vertical-page.svg │ │ │ │ │ │ ├── distribute-vertical-top.svg │ │ │ │ │ │ ├── distribute-vertical-y.svg │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ ├── document-cleanup.svg │ │ │ │ │ │ ├── document-close.svg │ │ │ │ │ │ ├── document-decrypt.svg │ │ │ │ │ │ ├── document-edit-decrypt-verify.svg │ │ │ │ │ │ ├── document-edit-decrypt.svg │ │ │ │ │ │ ├── document-edit-encrypt.svg │ │ │ │ │ │ ├── document-edit-sign-encrypt.svg │ │ │ │ │ │ ├── document-edit-sign.svg │ │ │ │ │ │ ├── document-edit-verify.svg │ │ │ │ │ │ ├── document-edit.svg │ │ │ │ │ │ ├── document-encrypt.svg │ │ │ │ │ │ ├── document-encrypted.svg │ │ │ │ │ │ ├── document-export-local.svg │ │ │ │ │ │ ├── document-export-ocal.svg │ │ │ │ │ │ ├── document-export-table.svg │ │ │ │ │ │ ├── document-export.svg │ │ │ │ │ │ ├── document-import-local.svg │ │ │ │ │ │ ├── document-import-ocal.svg │ │ │ │ │ │ ├── document-import-table.svg │ │ │ │ │ │ ├── document-import.svg │ │ │ │ │ │ ├── document-info.svg │ │ │ │ │ │ ├── document-multiple.svg │ │ │ │ │ │ ├── document-new-from-template.svg │ │ │ │ │ │ ├── document-new.svg │ │ │ │ │ │ ├── document-open-data.svg │ │ │ │ │ │ ├── document-open-folder.svg │ │ │ │ │ │ ├── document-open-recent.svg │ │ │ │ │ │ ├── document-open-remote.svg │ │ │ │ │ │ ├── document-open.svg │ │ │ │ │ │ ├── document-page-setup.svg │ │ │ │ │ │ ├── document-preview-archive.svg │ │ │ │ │ │ ├── document-preview.svg │ │ │ │ │ │ ├── document-print-direct.svg │ │ │ │ │ │ ├── document-print-frame.svg │ │ │ │ │ │ ├── document-print-preview.svg │ │ │ │ │ │ ├── document-print.svg │ │ │ │ │ │ ├── document-properties.svg │ │ │ │ │ │ ├── document-revert-rtl.svg │ │ │ │ │ │ ├── document-revert.svg │ │ │ │ │ │ ├── document-save-all.svg │ │ │ │ │ │ ├── document-save-as.svg │ │ │ │ │ │ ├── document-save.svg │ │ │ │ │ │ ├── document-send.svg │ │ │ │ │ │ ├── document-share.svg │ │ │ │ │ │ ├── document-sign.svg │ │ │ │ │ │ ├── document-swap.svg │ │ │ │ │ │ ├── documentation.svg │ │ │ │ │ │ ├── documentinfo.svg │ │ │ │ │ │ ├── down.svg │ │ │ │ │ │ ├── download-amarok.svg │ │ │ │ │ │ ├── download-later.svg │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ ├── draw-arrow-back.svg │ │ │ │ │ │ ├── draw-arrow-down.svg │ │ │ │ │ │ ├── draw-arrow-forward.svg │ │ │ │ │ │ ├── draw-arrow-up.svg │ │ │ │ │ │ ├── draw-bezier-curves.svg │ │ │ │ │ │ ├── draw-brush.svg │ │ │ │ │ │ ├── draw-calligraphic.svg │ │ │ │ │ │ ├── draw-circle.svg │ │ │ │ │ │ ├── draw-connector.svg │ │ │ │ │ │ ├── draw-cross.svg │ │ │ │ │ │ ├── draw-cuboid.svg │ │ │ │ │ │ ├── draw-donut.svg │ │ │ │ │ │ ├── draw-ellipse.svg │ │ │ │ │ │ ├── draw-eraser.svg │ │ │ │ │ │ ├── draw-freehand.svg │ │ │ │ │ │ ├── draw-halfcircle1.svg │ │ │ │ │ │ ├── draw-halfcircle2.svg │ │ │ │ │ │ ├── draw-halfcircle3.svg │ │ │ │ │ │ ├── draw-halfcircle4.svg │ │ │ │ │ │ ├── draw-line.svg │ │ │ │ │ │ ├── draw-path.svg │ │ │ │ │ │ ├── draw-polygon-star.svg │ │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ │ ├── draw-polyline.svg │ │ │ │ │ │ ├── draw-rectangle.svg │ │ │ │ │ │ ├── draw-spiral.svg │ │ │ │ │ │ ├── draw-square-inverted-corners.svg │ │ │ │ │ │ ├── draw-star.svg │ │ │ │ │ │ ├── draw-text.svg │ │ │ │ │ │ ├── draw-triangle.svg │ │ │ │ │ │ ├── draw-triangle1.svg │ │ │ │ │ │ ├── draw-triangle2.svg │ │ │ │ │ │ ├── draw-triangle3.svg │ │ │ │ │ │ ├── draw-triangle4.svg │ │ │ │ │ │ ├── draw-watercolor.svg │ │ │ │ │ │ ├── duplicate-node.svg │ │ │ │ │ │ ├── dynamic-amarok.svg │ │ │ │ │ │ ├── edit-add.svg │ │ │ │ │ │ ├── edit-bomb.svg │ │ │ │ │ │ ├── edit-clear-all.svg │ │ │ │ │ │ ├── edit-clear-history.svg │ │ │ │ │ │ ├── edit-clear-list.svg │ │ │ │ │ │ ├── edit-clear-locationbar-ltr.svg │ │ │ │ │ │ ├── edit-clear-locationbar-rtl.svg │ │ │ │ │ │ ├── edit-clear.svg │ │ │ │ │ │ ├── edit-clone-unlink.svg │ │ │ │ │ │ ├── edit-clone.svg │ │ │ │ │ │ ├── edit-copy.svg │ │ │ │ │ │ ├── edit-cut.svg │ │ │ │ │ │ ├── edit-delete-shred.svg │ │ │ │ │ │ ├── edit-delete.svg │ │ │ │ │ │ ├── edit-download.svg │ │ │ │ │ │ ├── edit-duplicate.svg │ │ │ │ │ │ ├── edit-entry.svg │ │ │ │ │ │ ├── edit-find-email.svg │ │ │ │ │ │ ├── edit-find-mail.svg │ │ │ │ │ │ ├── edit-find-project.svg │ │ │ │ │ │ ├── edit-find-replace.svg │ │ │ │ │ │ ├── edit-find-user.svg │ │ │ │ │ │ ├── edit-find.svg │ │ │ │ │ │ ├── edit-guides.svg │ │ │ │ │ │ ├── edit-image-face-add.svg │ │ │ │ │ │ ├── edit-image-face-detect.svg │ │ │ │ │ │ ├── edit-image-face-recognize.svg │ │ │ │ │ │ ├── edit-image-face-show.svg │ │ │ │ │ │ ├── edit-link.svg │ │ │ │ │ │ ├── edit-node.svg │ │ │ │ │ │ ├── edit-paste-in-place.svg │ │ │ │ │ │ ├── edit-paste-style.svg │ │ │ │ │ │ ├── edit-paste.svg │ │ │ │ │ │ ├── edit-redo-amarok.svg │ │ │ │ │ │ ├── edit-redo.svg │ │ │ │ │ │ ├── edit-rename.svg │ │ │ │ │ │ ├── edit-select-all-layers.svg │ │ │ │ │ │ ├── edit-select-all.svg │ │ │ │ │ │ ├── edit-select-invert.svg │ │ │ │ │ │ ├── edit-select-lasso.svg │ │ │ │ │ │ ├── edit-select-none.svg │ │ │ │ │ │ ├── edit-select-original.svg │ │ │ │ │ │ ├── edit-select.svg │ │ │ │ │ │ ├── edit-table-cell-merge.svg │ │ │ │ │ │ ├── edit-table-cell-split.svg │ │ │ │ │ │ ├── edit-table-delete-column.svg │ │ │ │ │ │ ├── edit-table-delete-row.svg │ │ │ │ │ │ ├── edit-table-insert-column-left.svg │ │ │ │ │ │ ├── edit-table-insert-column-right.svg │ │ │ │ │ │ ├── edit-table-insert-row-above.svg │ │ │ │ │ │ ├── edit-table-insert-row-below.svg │ │ │ │ │ │ ├── edit-table-insert-row-under.svg │ │ │ │ │ │ ├── edit-text-frame-update.svg │ │ │ │ │ │ ├── edit-undo-amarok.svg │ │ │ │ │ │ ├── edit-undo-history.svg │ │ │ │ │ │ ├── edit-undo.svg │ │ │ │ │ │ ├── edit.svg │ │ │ │ │ │ ├── editclear.svg │ │ │ │ │ │ ├── editcopy.svg │ │ │ │ │ │ ├── editcut.svg │ │ │ │ │ │ ├── editdelete.svg │ │ │ │ │ │ ├── editimage.svg │ │ │ │ │ │ ├── editpaste.svg │ │ │ │ │ │ ├── embosstool.svg │ │ │ │ │ │ ├── entry-clone.svg │ │ │ │ │ │ ├── entry-delete.svg │ │ │ │ │ │ ├── entry-new.svg │ │ │ │ │ │ ├── epiphany-bookmarks.svg │ │ │ │ │ │ ├── epiphany-download.svg │ │ │ │ │ │ ├── epiphany-secure.svg │ │ │ │ │ │ ├── epiphany-unsecure.svg │ │ │ │ │ │ ├── exchange-positions-clockwise.svg │ │ │ │ │ │ ├── exchange-positions-zorder.svg │ │ │ │ │ │ ├── exchange-positions.svg │ │ │ │ │ │ ├── exifinfo.svg │ │ │ │ │ │ ├── exit.svg │ │ │ │ │ │ ├── extract-archive.svg │ │ │ │ │ │ ├── favorite-genres-amarok.svg │ │ │ │ │ │ ├── feed-subscribe.svg │ │ │ │ │ │ ├── file-find.svg │ │ │ │ │ │ ├── file-zoom-in.svg │ │ │ │ │ │ ├── file-zoom-out.svg │ │ │ │ │ │ ├── file_new.svg │ │ │ │ │ │ ├── filefind.svg │ │ │ │ │ │ ├── filename-album-amarok.svg │ │ │ │ │ │ ├── filename-and-amarok.svg │ │ │ │ │ │ ├── filename-artist-amarok.svg │ │ │ │ │ │ ├── filename-bpm-amarok.svg │ │ │ │ │ │ ├── filename-comment-amarok.svg │ │ │ │ │ │ ├── filename-composer-amarok.svg │ │ │ │ │ │ ├── filename-dash-amarok.svg │ │ │ │ │ │ ├── filename-discnumber-amarok.svg │ │ │ │ │ │ ├── filename-divider.svg │ │ │ │ │ │ ├── filename-dot-amarok.svg │ │ │ │ │ │ ├── filename-filetype-amarok.svg │ │ │ │ │ │ ├── filename-genre-amarok.svg │ │ │ │ │ │ ├── filename-group-length.svg │ │ │ │ │ │ ├── filename-group-tracks.svg │ │ │ │ │ │ ├── filename-ignore-amarok.svg │ │ │ │ │ │ ├── filename-initial-amarok.svg │ │ │ │ │ │ ├── filename-last-played.svg │ │ │ │ │ │ ├── filename-moodbar.svg │ │ │ │ │ │ ├── filename-sample-rate.svg │ │ │ │ │ │ ├── filename-slash-amarok.svg │ │ │ │ │ │ ├── filename-space-amarok.svg │ │ │ │ │ │ ├── filename-title-amarok.svg │ │ │ │ │ │ ├── filename-track-amarok.svg │ │ │ │ │ │ ├── filename-underscore-amarok.svg │ │ │ │ │ │ ├── filename-year-amarok.svg │ │ │ │ │ │ ├── filenew.svg │ │ │ │ │ │ ├── fileopen.svg │ │ │ │ │ │ ├── fileprint.svg │ │ │ │ │ │ ├── filequickprint.svg │ │ │ │ │ │ ├── filesave.svg │ │ │ │ │ │ ├── filesaveas.svg │ │ │ │ │ │ ├── fileview-preview.svg │ │ │ │ │ │ ├── fill-color.svg │ │ │ │ │ │ ├── filmgrain.svg │ │ │ │ │ │ ├── find.svg │ │ │ │ │ │ ├── finish.svg │ │ │ │ │ │ ├── flag-black.svg │ │ │ │ │ │ ├── flag-blue.svg │ │ │ │ │ │ ├── flag-green.svg │ │ │ │ │ │ ├── flag-red.svg │ │ │ │ │ │ ├── flag-yellow.svg │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ ├── flip-horizontal.svg │ │ │ │ │ │ ├── folder-copy.svg │ │ │ │ │ │ ├── folder-move.svg │ │ │ │ │ │ ├── folder-new.svg │ │ │ │ │ │ ├── folder-sync.svg │ │ │ │ │ │ ├── folder_new.svg │ │ │ │ │ │ ├── followmouse.svg │ │ │ │ │ │ ├── fork.svg │ │ │ │ │ │ ├── format-add-node.svg │ │ │ │ │ │ ├── format-break-node.svg │ │ │ │ │ │ ├── format-connect-node.svg │ │ │ │ │ │ ├── format-disconnect-node.svg │ │ │ │ │ │ ├── format-fill-color.svg │ │ │ │ │ │ ├── format-font-size-less.svg │ │ │ │ │ │ ├── format-font-size-more.svg │ │ │ │ │ │ ├── format-indent-less.svg │ │ │ │ │ │ ├── format-indent-more.svg │ │ │ │ │ │ ├── format-join-node.svg │ │ │ │ │ │ ├── format-justify-center.svg │ │ │ │ │ │ ├── format-justify-fill.svg │ │ │ │ │ │ ├── format-justify-left.svg │ │ │ │ │ │ ├── format-justify-right.svg │ │ │ │ │ │ ├── format-line-spacing-double.svg │ │ │ │ │ │ ├── format-line-spacing-normal.svg │ │ │ │ │ │ ├── format-line-spacing-triple.svg │ │ │ │ │ │ ├── format-list-ordered.svg │ │ │ │ │ │ ├── format-list-unordered.svg │ │ │ │ │ │ ├── format-remove-node.svg │ │ │ │ │ │ ├── format-stroke-color.svg │ │ │ │ │ │ ├── format-text-blockquote.svg │ │ │ │ │ │ ├── format-text-bold.svg │ │ │ │ │ │ ├── format-text-code.svg │ │ │ │ │ │ ├── format-text-color.svg │ │ │ │ │ │ ├── format-text-direction-horizontal.svg │ │ │ │ │ │ ├── format-text-direction-ltr.svg │ │ │ │ │ │ ├── format-text-direction-rtl.svg │ │ │ │ │ │ ├── format-text-direction-vertical.svg │ │ │ │ │ │ ├── format-text-italic.svg │ │ │ │ │ │ ├── format-text-strikethrough.svg │ │ │ │ │ │ ├── format-text-subscript.svg │ │ │ │ │ │ ├── format-text-superscript.svg │ │ │ │ │ │ ├── format-text-symbol.svg │ │ │ │ │ │ ├── format-text-underline.svg │ │ │ │ │ │ ├── formula.svg │ │ │ │ │ │ ├── forward.svg │ │ │ │ │ │ ├── freerotation.svg │ │ │ │ │ │ ├── games-achievements.svg │ │ │ │ │ │ ├── games-config-background.svg │ │ │ │ │ │ ├── games-config-board.svg │ │ │ │ │ │ ├── games-config-custom.svg │ │ │ │ │ │ ├── games-config-options.svg │ │ │ │ │ │ ├── games-config-theme.svg │ │ │ │ │ │ ├── games-config-tiles.svg │ │ │ │ │ │ ├── games-difficult.svg │ │ │ │ │ │ ├── games-endturn.svg │ │ │ │ │ │ ├── games-highscores.svg │ │ │ │ │ │ ├── games-hint.svg │ │ │ │ │ │ ├── games-solve.svg │ │ │ │ │ │ ├── geany-build.svg │ │ │ │ │ │ ├── geany-close-all.svg │ │ │ │ │ │ ├── geany-save-all.svg │ │ │ │ │ │ ├── get-hot-new-stuff.svg │ │ │ │ │ │ ├── gnome-app-install-star.svg │ │ │ │ │ │ ├── gnome-fs-bookmark.svg │ │ │ │ │ │ ├── gnome-help.svg │ │ │ │ │ │ ├── gnome-run.svg │ │ │ │ │ │ ├── gnome-shutdown.svg │ │ │ │ │ │ ├── gnome-stock-mail-fwd.svg │ │ │ │ │ │ ├── gnome-stock-mail-new.svg │ │ │ │ │ │ ├── gnome-stock-mail-rpl.svg │ │ │ │ │ │ ├── gnome-stock-mail-snd.svg │ │ │ │ │ │ ├── go-bottom.svg │ │ │ │ │ │ ├── go-down-search.svg │ │ │ │ │ │ ├── go-down.svg │ │ │ │ │ │ ├── go-first-rtl.svg │ │ │ │ │ │ ├── go-first-view-page.svg │ │ │ │ │ │ ├── go-first-view.svg │ │ │ │ │ │ ├── go-first.svg │ │ │ │ │ │ ├── go-home.svg │ │ │ │ │ │ ├── go-jump-declaration.svg │ │ │ │ │ │ ├── go-jump-definition.svg │ │ │ │ │ │ ├── go-jump-locationbar.svg │ │ │ │ │ │ ├── go-jump-today.svg │ │ │ │ │ │ ├── go-jump.svg │ │ │ │ │ │ ├── go-last-rtl.svg │ │ │ │ │ │ ├── go-last-view-page.svg │ │ │ │ │ │ ├── go-last-view.svg │ │ │ │ │ │ ├── go-last.svg │ │ │ │ │ │ ├── go-next-context.svg │ │ │ │ │ │ ├── go-next-use.svg │ │ │ │ │ │ ├── go-next-view-page.svg │ │ │ │ │ │ ├── go-next-view.svg │ │ │ │ │ │ ├── go-next.svg │ │ │ │ │ │ ├── go-parent-folder.svg │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ ├── go-previous-rtl.svg │ │ │ │ │ │ ├── go-previous-use.svg │ │ │ │ │ │ ├── go-previous-view-page.svg │ │ │ │ │ │ ├── go-previous-view.svg │ │ │ │ │ │ ├── go-previous.svg │ │ │ │ │ │ ├── go-top.svg │ │ │ │ │ │ ├── go-up-search.svg │ │ │ │ │ │ ├── go-up.svg │ │ │ │ │ │ ├── gohome.svg │ │ │ │ │ │ ├── gpg.svg │ │ │ │ │ │ ├── gpgsm.svg │ │ │ │ │ │ ├── gtk-about.svg │ │ │ │ │ │ ├── gtk-add.svg │ │ │ │ │ │ ├── gtk-apply.svg │ │ │ │ │ │ ├── gtk-authentication.svg │ │ │ │ │ │ ├── gtk-bold.svg │ │ │ │ │ │ ├── gtk-cancel.svg │ │ │ │ │ │ ├── gtk-cdrom.svg │ │ │ │ │ │ ├── gtk-clear.svg │ │ │ │ │ │ ├── gtk-close.svg │ │ │ │ │ │ ├── gtk-color-picker.svg │ │ │ │ │ │ ├── gtk-connect.svg │ │ │ │ │ │ ├── gtk-convert.svg │ │ │ │ │ │ ├── gtk-copy.svg │ │ │ │ │ │ ├── gtk-cut.svg │ │ │ │ │ │ ├── gtk-delete.svg │ │ │ │ │ │ ├── gtk-disconnect.svg │ │ │ │ │ │ ├── gtk-edit.svg │ │ │ │ │ │ ├── gtk-execute.svg │ │ │ │ │ │ ├── gtk-find-and-replace.svg │ │ │ │ │ │ ├── gtk-find.svg │ │ │ │ │ │ ├── gtk-floppy.svg │ │ │ │ │ │ ├── gtk-fullscreen.svg │ │ │ │ │ │ ├── gtk-go-back-ltr.svg │ │ │ │ │ │ ├── gtk-go-back-rtl.svg │ │ │ │ │ │ ├── gtk-go-down.svg │ │ │ │ │ │ ├── gtk-go-forward-ltr.svg │ │ │ │ │ │ ├── gtk-go-forward-rtl.svg │ │ │ │ │ │ ├── gtk-go-up.svg │ │ │ │ │ │ ├── gtk-goto-bottom.svg │ │ │ │ │ │ ├── gtk-goto-first-ltr.svg │ │ │ │ │ │ ├── gtk-goto-first-rtl.svg │ │ │ │ │ │ ├── gtk-goto-last-ltr.svg │ │ │ │ │ │ ├── gtk-goto-last-rtl.svg │ │ │ │ │ │ ├── gtk-goto-top.svg │ │ │ │ │ │ ├── gtk-home.svg │ │ │ │ │ │ ├── gtk-index.svg │ │ │ │ │ │ ├── gtk-info.svg │ │ │ │ │ │ ├── gtk-jump-to-ltr.svg │ │ │ │ │ │ ├── gtk-jump-to-rtl.svg │ │ │ │ │ │ ├── gtk-leave-fullscreen.svg │ │ │ │ │ │ ├── gtk-media-forward-ltr.svg │ │ │ │ │ │ ├── gtk-media-forward-rtl.svg │ │ │ │ │ │ ├── gtk-media-next-ltr.svg │ │ │ │ │ │ ├── gtk-media-next-rtl.svg │ │ │ │ │ │ ├── gtk-media-pause.svg │ │ │ │ │ │ ├── gtk-media-play-ltr.svg │ │ │ │ │ │ ├── gtk-media-previous-ltr.svg │ │ │ │ │ │ ├── gtk-media-previous-rtl.svg │ │ │ │ │ │ ├── gtk-media-record.svg │ │ │ │ │ │ ├── gtk-media-rewind-ltr.svg │ │ │ │ │ │ ├── gtk-media-rewind-rtl.svg │ │ │ │ │ │ ├── gtk-media-stop.svg │ │ │ │ │ │ ├── gtk-new.svg │ │ │ │ │ │ ├── gtk-no.svg │ │ │ │ │ │ ├── gtk-ok.svg │ │ │ │ │ │ ├── gtk-open.svg │ │ │ │ │ │ ├── gtk-paste.svg │ │ │ │ │ │ ├── gtk-preferences.svg │ │ │ │ │ │ ├── gtk-print-preview.svg │ │ │ │ │ │ ├── gtk-print.svg │ │ │ │ │ │ ├── gtk-properties.svg │ │ │ │ │ │ ├── gtk-quit.svg │ │ │ │ │ │ ├── gtk-redo-ltr.svg │ │ │ │ │ │ ├── gtk-redo-rtl.svg │ │ │ │ │ │ ├── gtk-redo.ltr.svg │ │ │ │ │ │ ├── gtk-redo.svg │ │ │ │ │ │ ├── gtk-refresh.svg │ │ │ │ │ │ ├── gtk-remove.svg │ │ │ │ │ │ ├── gtk-revert-to-saved-ltr.svg │ │ │ │ │ │ ├── gtk-revert-to-saved-rtl.svg │ │ │ │ │ │ ├── gtk-save-all.svg │ │ │ │ │ │ ├── gtk-save-as.svg │ │ │ │ │ │ ├── gtk-save.svg │ │ │ │ │ │ ├── gtk-search.svg │ │ │ │ │ │ ├── gtk-select-all.svg │ │ │ │ │ │ ├── gtk-select-color.svg │ │ │ │ │ │ ├── gtk-select-font.svg │ │ │ │ │ │ ├── gtk-sort-ascending.svg │ │ │ │ │ │ ├── gtk-sort-descending.svg │ │ │ │ │ │ ├── gtk-stop.svg │ │ │ │ │ │ ├── gtk-tab-duplicate.svg │ │ │ │ │ │ ├── gtk-tab-new.svg │ │ │ │ │ │ ├── gtk-undelete-ltr.svg │ │ │ │ │ │ ├── gtk-undelete-rtl.svg │ │ │ │ │ │ ├── gtk-undo-ltr.svg │ │ │ │ │ │ ├── gtk-undo-rtl.svg │ │ │ │ │ │ ├── gtk-undo.svg │ │ │ │ │ │ ├── gtk-yes.svg │ │ │ │ │ │ ├── gtk-zoom-100.svg │ │ │ │ │ │ ├── gtk-zoom-fit.svg │ │ │ │ │ │ ├── gtk-zoom-in.svg │ │ │ │ │ │ ├── gtk-zoom-out.svg │ │ │ │ │ │ ├── help-about.svg │ │ │ │ │ │ ├── help-contents.svg │ │ │ │ │ │ ├── help-contextual.svg │ │ │ │ │ │ ├── help-donate.svg │ │ │ │ │ │ ├── help-faq.svg │ │ │ │ │ │ ├── help-feedback.svg │ │ │ │ │ │ ├── help-hint.svg │ │ │ │ │ │ ├── help-keybord-shortcuts.svg │ │ │ │ │ │ ├── help.svg │ │ │ │ │ │ ├── hidemouse.svg │ │ │ │ │ │ ├── hint.svg │ │ │ │ │ │ ├── hook-notifier.svg │ │ │ │ │ │ ├── hotpixels.svg │ │ │ │ │ │ ├── identity.svg │ │ │ │ │ │ ├── im-aim.svg │ │ │ │ │ │ ├── im-ban-kick-user.svg │ │ │ │ │ │ ├── im-ban-user.svg │ │ │ │ │ │ ├── im-facebook.svg │ │ │ │ │ │ ├── im-gadugadu.svg │ │ │ │ │ │ ├── im-google-talk.svg │ │ │ │ │ │ ├── im-google.svg │ │ │ │ │ │ ├── im-icq.svg │ │ │ │ │ │ ├── im-identi.ca.svg │ │ │ │ │ │ ├── im-invisible-user.svg │ │ │ │ │ │ ├── im-jabber.svg │ │ │ │ │ │ ├── im-kick-user.svg │ │ │ │ │ │ ├── im-msn.svg │ │ │ │ │ │ ├── im-qq.svg │ │ │ │ │ │ ├── im-skype.svg │ │ │ │ │ │ ├── im-twitter.svg │ │ │ │ │ │ ├── im-user-away.svg │ │ │ │ │ │ ├── im-user-busy.svg │ │ │ │ │ │ ├── im-user-offline.svg │ │ │ │ │ │ ├── im-user-online.svg │ │ │ │ │ │ ├── im-user.svg │ │ │ │ │ │ ├── im-yahoo.svg │ │ │ │ │ │ ├── image-zoom-in.svg │ │ │ │ │ │ ├── image-zoom-out.svg │ │ │ │ │ │ ├── imagecomment.svg │ │ │ │ │ │ ├── inpainting.svg │ │ │ │ │ │ ├── insert-button.svg │ │ │ │ │ │ ├── insert-endnote.svg │ │ │ │ │ │ ├── insert-footnote.svg │ │ │ │ │ │ ├── insert-horizontal-rule.svg │ │ │ │ │ │ ├── insert-image.svg │ │ │ │ │ │ ├── insert-link.svg │ │ │ │ │ │ ├── insert-more-mark.svg │ │ │ │ │ │ ├── insert-pause.svg │ │ │ │ │ │ ├── insert-table-row.svg │ │ │ │ │ │ ├── insert-table.svg │ │ │ │ │ │ ├── insert-tableofcontents.svg │ │ │ │ │ │ ├── insert-text-frame.svg │ │ │ │ │ │ ├── insert-text.svg │ │ │ │ │ │ ├── internet-amarok.svg │ │ │ │ │ │ ├── invertimage.svg │ │ │ │ │ │ ├── irc-channel-active.svg │ │ │ │ │ │ ├── irc-channel-inactive.svg │ │ │ │ │ │ ├── irc-close-channel.svg │ │ │ │ │ │ ├── irc-join-channel.svg │ │ │ │ │ │ ├── irc-operator.svg │ │ │ │ │ │ ├── irc-remove-operator.svg │ │ │ │ │ │ ├── irc-unvoice.svg │ │ │ │ │ │ ├── irc-voice.svg │ │ │ │ │ │ ├── iso-image-burn.svg │ │ │ │ │ │ ├── iso-image-iso.svg │ │ │ │ │ │ ├── journal-new.svg │ │ │ │ │ │ ├── jump-today.svg │ │ │ │ │ │ ├── kdenlive-add-clip.svg │ │ │ │ │ │ ├── kdenlive-add-color-clip.svg │ │ │ │ │ │ ├── kdenlive-add-slide-clip.svg │ │ │ │ │ │ ├── kdenlive-add-text-clip.svg │ │ │ │ │ │ ├── kdenlive-align-bottom.svg │ │ │ │ │ │ ├── kdenlive-align-hor.svg │ │ │ │ │ │ ├── kdenlive-align-left.svg │ │ │ │ │ │ ├── kdenlive-align-none.svg │ │ │ │ │ │ ├── kdenlive-align-right.svg │ │ │ │ │ │ ├── kdenlive-align-top.svg │ │ │ │ │ │ ├── kdenlive-align-vert.svg │ │ │ │ │ │ ├── kdenlive-custom-effect.svg │ │ │ │ │ │ ├── kdenlive-deleffect.svg │ │ │ │ │ │ ├── kdenlive-down.svg │ │ │ │ │ │ ├── kdenlive-hide-audio.svg │ │ │ │ │ │ ├── kdenlive-hide-video.svg │ │ │ │ │ │ ├── kdenlive-insert-edit.svg │ │ │ │ │ │ ├── kdenlive-insert-rect.svg │ │ │ │ │ │ ├── kdenlive-insert-unicode.svg │ │ │ │ │ │ ├── kdenlive-lock.svg │ │ │ │ │ │ ├── kdenlive-menu.svg │ │ │ │ │ │ ├── kdenlive-normal-edit.svg │ │ │ │ │ │ ├── kdenlive-object-height.svg │ │ │ │ │ │ ├── kdenlive-object-width.svg │ │ │ │ │ │ ├── kdenlive-overwrite-edit.svg │ │ │ │ │ │ ├── kdenlive-select-all.svg │ │ │ │ │ │ ├── kdenlive-select-images.svg │ │ │ │ │ │ ├── kdenlive-select-rects.svg │ │ │ │ │ │ ├── kdenlive-select-texts.svg │ │ │ │ │ │ ├── kdenlive-select-tool.svg │ │ │ │ │ │ ├── kdenlive-show-audio.svg │ │ │ │ │ │ ├── kdenlive-show-audiothumb.svg │ │ │ │ │ │ ├── kdenlive-show-markers.svg │ │ │ │ │ │ ├── kdenlive-show-video.svg │ │ │ │ │ │ ├── kdenlive-show-videothumb.svg │ │ │ │ │ │ ├── kdenlive-snap.svg │ │ │ │ │ │ ├── kdenlive-spacer-tool.svg │ │ │ │ │ │ ├── kdenlive-split-audio.svg │ │ │ │ │ │ ├── kdenlive-track-has-effect.svg │ │ │ │ │ │ ├── kdenlive-track_has_effect.svg │ │ │ │ │ │ ├── kdenlive-unlock.svg │ │ │ │ │ │ ├── kdenlive-unselect-all.svg │ │ │ │ │ │ ├── kdenlive-up.svg │ │ │ │ │ │ ├── kdenlive-zindex-bottom.svg │ │ │ │ │ │ ├── kdenlive-zindex-down.svg │ │ │ │ │ │ ├── kdenlive-zindex-top.svg │ │ │ │ │ │ ├── kdenlive-zindex-up.svg │ │ │ │ │ │ ├── kdenlive-zone-end.svg │ │ │ │ │ │ ├── kdenlive-zone-start.svg │ │ │ │ │ │ ├── kdenlive-zoom-large.svg │ │ │ │ │ │ ├── kdenlive-zoom-small.svg │ │ │ │ │ │ ├── key-enter.svg │ │ │ │ │ │ ├── kfm-home.svg │ │ │ │ │ │ ├── kfm_home.svg │ │ │ │ │ │ ├── kmouth-phrase-new.svg │ │ │ │ │ │ ├── kmouth-phrase.svg │ │ │ │ │ │ ├── kmouth-phrasebook.svg │ │ │ │ │ │ ├── kmouth-phresebook-new.svg │ │ │ │ │ │ ├── knotes_alarm.svg │ │ │ │ │ │ ├── knotes_close.svg │ │ │ │ │ │ ├── knotes_date.svg │ │ │ │ │ │ ├── knotes_delete.svg │ │ │ │ │ │ ├── kr_combine.svg │ │ │ │ │ │ ├── kr_comparedirs.svg │ │ │ │ │ │ ├── kr_diskusage.svg │ │ │ │ │ │ ├── kr_jumpback.svg │ │ │ │ │ │ ├── kr_mountman.svg │ │ │ │ │ │ ├── kr_setjumpback.svg │ │ │ │ │ │ ├── kr_syncbrowse_off.svg │ │ │ │ │ │ ├── kr_syncbrowse_on.svg │ │ │ │ │ │ ├── kr_unselect.svg │ │ │ │ │ │ ├── kt-add-feeds.svg │ │ │ │ │ │ ├── kt-add-filters.svg │ │ │ │ │ │ ├── kt-bandwidth-scheduler.svg │ │ │ │ │ │ ├── kt-change-tracker.svg │ │ │ │ │ │ ├── kt-check-data.svg │ │ │ │ │ │ ├── kt-chunks.svg │ │ │ │ │ │ ├── kt-encrypted.svg │ │ │ │ │ │ ├── kt-info-widget.svg │ │ │ │ │ │ ├── kt-magnet.svg │ │ │ │ │ │ ├── kt-pause.svg │ │ │ │ │ │ ├── kt-plugins.svg │ │ │ │ │ │ ├── kt-queue-manager.svg │ │ │ │ │ │ ├── kt-remove-feeds.svg │ │ │ │ │ │ ├── kt-remove-filters.svg │ │ │ │ │ │ ├── kt-remove.svg │ │ │ │ │ │ ├── kt-restore-defaults.svg │ │ │ │ │ │ ├── kt-set-max-download-speed.svg │ │ │ │ │ │ ├── kt-set-max-upload-speed.svg │ │ │ │ │ │ ├── kt-show-statusbar.svg │ │ │ │ │ │ ├── kt-speed-limits.svg │ │ │ │ │ │ ├── kt-start-all.svg │ │ │ │ │ │ ├── kt-start.svg │ │ │ │ │ │ ├── kt-stop-all.svg │ │ │ │ │ │ ├── kt-stop.svg │ │ │ │ │ │ ├── ktnef_extract_to.svg │ │ │ │ │ │ ├── label-amarok.svg │ │ │ │ │ │ ├── labplot-TeX-logo.svg │ │ │ │ │ │ ├── labplot-axis-horizontal.svg │ │ │ │ │ │ ├── labplot-axis-vertical.svg │ │ │ │ │ │ ├── labplot-shift-down-y.svg │ │ │ │ │ │ ├── labplot-shift-left-x.svg │ │ │ │ │ │ ├── labplot-shift-right-x.svg │ │ │ │ │ │ ├── labplot-shift-up-y.svg │ │ │ │ │ │ ├── labplot-xy-equation-curve.svg │ │ │ │ │ │ ├── labplot-xy-fit-curve.svg │ │ │ │ │ │ ├── layer-bottom.svg │ │ │ │ │ │ ├── layer-delete.svg │ │ │ │ │ │ ├── layer-duplicate.svg │ │ │ │ │ │ ├── layer-lower.svg │ │ │ │ │ │ ├── layer-new.svg │ │ │ │ │ │ ├── layer-next.svg │ │ │ │ │ │ ├── layer-previous.svg │ │ │ │ │ │ ├── layer-raise.svg │ │ │ │ │ │ ├── layer-rename.svg │ │ │ │ │ │ ├── layer-top.svg │ │ │ │ │ │ ├── layer-visible-off.svg │ │ │ │ │ │ ├── layer-visible-on.svg │ │ │ │ │ │ ├── lensautofix.svg │ │ │ │ │ │ ├── lensdistortion.svg │ │ │ │ │ │ ├── lighttable.svg │ │ │ │ │ │ ├── lighttableadd.svg │ │ │ │ │ │ ├── lines-connector.svg │ │ │ │ │ │ ├── list-add-font.svg │ │ │ │ │ │ ├── list-add-user.svg │ │ │ │ │ │ ├── list-add.svg │ │ │ │ │ │ ├── list-remove-user.svg │ │ │ │ │ │ ├── list-remove.svg │ │ │ │ │ │ ├── list-resource-add.svg │ │ │ │ │ │ ├── locationbar-erase.svg │ │ │ │ │ │ ├── lock-insecure.svg │ │ │ │ │ │ ├── lock-secure.svg │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ ├── locked.svg │ │ │ │ │ │ ├── love-amarok.svg │ │ │ │ │ │ ├── mail-attachment.svg │ │ │ │ │ │ ├── mail-encrypted-full.svg │ │ │ │ │ │ ├── mail-encrypted-part.svg │ │ │ │ │ │ ├── mail-encrypted.svg │ │ │ │ │ │ ├── mail-encrytped-full.svg │ │ │ │ │ │ ├── mail-encrytped-part.svg │ │ │ │ │ │ ├── mail-encrytped.svg │ │ │ │ │ │ ├── mail-flag.svg │ │ │ │ │ │ ├── mail-folder-sent.svg │ │ │ │ │ │ ├── mail-forward.svg │ │ │ │ │ │ ├── mail-forwarded-replied.svg │ │ │ │ │ │ ├── mail-forwarded.svg │ │ │ │ │ │ ├── mail-invitation.svg │ │ │ │ │ │ ├── mail-mark-important.svg │ │ │ │ │ │ ├── mail-mark-junk.svg │ │ │ │ │ │ ├── mail-mark-not-junk.svg │ │ │ │ │ │ ├── mail-mark-notjunk.svg │ │ │ │ │ │ ├── mail-mark-read.svg │ │ │ │ │ │ ├── mail-mark-task.svg │ │ │ │ │ │ ├── mail-mark-unread-new.svg │ │ │ │ │ │ ├── mail-mark-unread.svg │ │ │ │ │ │ ├── mail-meeting-request-reply.svg │ │ │ │ │ │ ├── mail-message-new-list.svg │ │ │ │ │ │ ├── mail-message-new.svg │ │ │ │ │ │ ├── mail-new.svg │ │ │ │ │ │ ├── mail-queue.svg │ │ │ │ │ │ ├── mail-read.svg │ │ │ │ │ │ ├── mail-receive.svg │ │ │ │ │ │ ├── mail-replied.svg │ │ │ │ │ │ ├── mail-reply-all.svg │ │ │ │ │ │ ├── mail-reply-custom-all.svg │ │ │ │ │ │ ├── mail-reply-custom.svg │ │ │ │ │ │ ├── mail-reply-list.svg │ │ │ │ │ │ ├── mail-reply-sender.svg │ │ │ │ │ │ ├── mail-reply.svg │ │ │ │ │ │ ├── mail-send-receive.svg │ │ │ │ │ │ ├── mail-send.svg │ │ │ │ │ │ ├── mail-sent.svg │ │ │ │ │ │ ├── mail-signature-unknown.svg │ │ │ │ │ │ ├── mail-signed-full.svg │ │ │ │ │ │ ├── mail-signed-fully.svg │ │ │ │ │ │ ├── mail-signed-part.svg │ │ │ │ │ │ ├── mail-signed-verified.svg │ │ │ │ │ │ ├── mail-signed.svg │ │ │ │ │ │ ├── mail-tagged.svg │ │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ │ ├── mail_forward.svg │ │ │ │ │ │ ├── mail_new.svg │ │ │ │ │ │ ├── mail_reply.svg │ │ │ │ │ │ ├── mail_replyall.svg │ │ │ │ │ │ ├── mail_send.svg │ │ │ │ │ │ ├── mark-location.svg │ │ │ │ │ │ ├── measure.svg │ │ │ │ │ │ ├── media-album-cover-manager-amarok.svg │ │ │ │ │ │ ├── media-album-cover.svg │ │ │ │ │ │ ├── media-album-repeat-amarok.svg │ │ │ │ │ │ ├── media-album-track.svg │ │ │ │ │ │ ├── media-eject.svg │ │ │ │ │ │ ├── media-import-audio-cd.svg │ │ │ │ │ │ ├── media-optical-audio-new.svg │ │ │ │ │ │ ├── media-optical-blank-symbolic.svg │ │ │ │ │ │ ├── media-optical-burn.svg │ │ │ │ │ │ ├── media-optical-copy.svg │ │ │ │ │ │ ├── media-optical-data-new.svg │ │ │ │ │ │ ├── media-optical-video-new.svg │ │ │ │ │ │ ├── media-playback-pause.svg │ │ │ │ │ │ ├── media-playback-play-pause.svg │ │ │ │ │ │ ├── media-playback-start.svg │ │ │ │ │ │ ├── media-playback-stop.svg │ │ │ │ │ │ ├── media-playlist-no-repeat.svg │ │ │ │ │ │ ├── media-playlist-repeat-amarok.svg │ │ │ │ │ │ ├── media-playlist-repeat-once.svg │ │ │ │ │ │ ├── media-playlist-repeat-one.svg │ │ │ │ │ │ ├── media-playlist-repeat-song.svg │ │ │ │ │ │ ├── media-playlist-repeat.svg │ │ │ │ │ │ ├── media-playlist-shuffle.svg │ │ │ │ │ │ ├── media-random-albums-amarok.svg │ │ │ │ │ │ ├── media-random-tracks-amarok.svg │ │ │ │ │ │ ├── media-record.svg │ │ │ │ │ │ ├── media-repeat-album-amarok.svg │ │ │ │ │ │ ├── media-repeat-playlist-amarok.svg │ │ │ │ │ │ ├── media-repeat-track-amarok.svg │ │ │ │ │ │ ├── media-seek-backward.svg │ │ │ │ │ │ ├── media-seek-forward.svg │ │ │ │ │ │ ├── media-show-active-track-amarok.svg │ │ │ │ │ │ ├── media-skip-backward.svg │ │ │ │ │ │ ├── media-skip-forward.svg │ │ │ │ │ │ ├── media-standard-track-progression-amarok.svg │ │ │ │ │ │ ├── media-track-add-amarok.svg │ │ │ │ │ │ ├── media-track-edit-amarok.svg │ │ │ │ │ │ ├── media-track-queue-amarok.svg │ │ │ │ │ │ ├── media-track-remove-amarok.svg │ │ │ │ │ │ ├── media-write-cd.svg │ │ │ │ │ │ ├── meeting-attending-tentative.svg │ │ │ │ │ │ ├── meeting-attending.svg │ │ │ │ │ │ ├── meeting-participant-no-response.svg │ │ │ │ │ │ ├── meeting-participant-request-response.svg │ │ │ │ │ │ ├── menu_new.svg │ │ │ │ │ │ ├── menu_new_sep.svg │ │ │ │ │ │ ├── merge.svg │ │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ │ ├── mic-off.svg │ │ │ │ │ │ ├── mic-on.svg │ │ │ │ │ │ ├── mic-ready.svg │ │ │ │ │ │ ├── milestone.svg │ │ │ │ │ │ ├── mixer-digital.svg │ │ │ │ │ │ ├── mixer-line.svg │ │ │ │ │ │ ├── music-amarok.svg │ │ │ │ │ │ ├── music-library.svg │ │ │ │ │ │ ├── nemo-eject.svg │ │ │ │ │ │ ├── network-connect.svg │ │ │ │ │ │ ├── network-disconnect.svg │ │ │ │ │ │ ├── new-audio-alarm.svg │ │ │ │ │ │ ├── news-subscribe.svg │ │ │ │ │ │ ├── news-unsubscribe.svg │ │ │ │ │ │ ├── next.svg │ │ │ │ │ │ ├── nocover.svg │ │ │ │ │ │ ├── noisereduction.svg │ │ │ │ │ │ ├── notebook-new.svg │ │ │ │ │ │ ├── object-align-horizontal-center-calligra.svg │ │ │ │ │ │ ├── object-align-horizontal-left-calligra.svg │ │ │ │ │ │ ├── object-align-horizontal-right-calligra.svg │ │ │ │ │ │ ├── object-align-vertical-bottom-calligra.svg │ │ │ │ │ │ ├── object-align-vertical-bottom-top-calligra.svg │ │ │ │ │ │ ├── object-align-vertical-center-calligra.svg │ │ │ │ │ │ ├── object-align-vertical-top-calligra.svg │ │ │ │ │ │ ├── object-flip-horizontal.svg │ │ │ │ │ │ ├── object-flip-vertical.svg │ │ │ │ │ │ ├── object-group-calligra.svg │ │ │ │ │ │ ├── object-group.svg │ │ │ │ │ │ ├── object-hidden.svg │ │ │ │ │ │ ├── object-locked.svg │ │ │ │ │ │ ├── object-order-back-calligra.svg │ │ │ │ │ │ ├── object-order-back.svg │ │ │ │ │ │ ├── object-order-front-calligra.svg │ │ │ │ │ │ ├── object-order-front.svg │ │ │ │ │ │ ├── object-order-lower-calligra.svg │ │ │ │ │ │ ├── object-order-lower.svg │ │ │ │ │ │ ├── object-order-raise-calligra.svg │ │ │ │ │ │ ├── object-order-raise.svg │ │ │ │ │ │ ├── object-rotate-left.svg │ │ │ │ │ │ ├── object-rotate-right.svg │ │ │ │ │ │ ├── object-ungroup-calligra.svg │ │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ │ ├── object-unlocked.svg │ │ │ │ │ │ ├── object-visible.svg │ │ │ │ │ │ ├── office-chart-area-focus-peak-node.svg │ │ │ │ │ │ ├── office-chart-area-percentage.svg │ │ │ │ │ │ ├── office-chart-area-stacked.svg │ │ │ │ │ │ ├── office-chart-area.svg │ │ │ │ │ │ ├── office-chart-bar-percentage.svg │ │ │ │ │ │ ├── office-chart-bar-stacked.svg │ │ │ │ │ │ ├── office-chart-bar.svg │ │ │ │ │ │ ├── office-chart-line-percentage.svg │ │ │ │ │ │ ├── office-chart-line-stacked.svg │ │ │ │ │ │ ├── office-chart-line.svg │ │ │ │ │ │ ├── office-chart-pie.svg │ │ │ │ │ │ ├── office-chart-polar-stacked.svg │ │ │ │ │ │ ├── office-chart-polar.svg │ │ │ │ │ │ ├── office-chart-ring.svg │ │ │ │ │ │ ├── office-chart-scatter.svg │ │ │ │ │ │ ├── oilpaint.svg │ │ │ │ │ │ ├── ok.svg │ │ │ │ │ │ ├── open-menu.svg │ │ │ │ │ │ ├── overexposure.svg │ │ │ │ │ │ ├── page-2sides.svg │ │ │ │ │ │ ├── page-3sides.svg │ │ │ │ │ │ ├── page-4sides.svg │ │ │ │ │ │ ├── page-simple.svg │ │ │ │ │ │ ├── page-zoom.svg │ │ │ │ │ │ ├── password-copy.svg │ │ │ │ │ │ ├── path-break-apart.svg │ │ │ │ │ │ ├── path-combine.svg │ │ │ │ │ │ ├── path-cut.svg │ │ │ │ │ │ ├── path-difference.svg │ │ │ │ │ │ ├── path-division.svg │ │ │ │ │ │ ├── path-exclusion.svg │ │ │ │ │ │ ├── path-intersection.svg │ │ │ │ │ │ ├── path-union.svg │ │ │ │ │ │ ├── pdf-annotations.svg │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ ├── perspective.svg │ │ │ │ │ │ ├── photos-amarok.svg │ │ │ │ │ │ ├── pixelart-trace.svg │ │ │ │ │ │ ├── player-eject.svg │ │ │ │ │ │ ├── player-end.svg │ │ │ │ │ │ ├── player-fwd.svg │ │ │ │ │ │ ├── player-new.svg │ │ │ │ │ │ ├── player-pause.svg │ │ │ │ │ │ ├── player-play.svg │ │ │ │ │ │ ├── player-record.svg │ │ │ │ │ │ ├── player-rew.svg │ │ │ │ │ │ ├── player-start.svg │ │ │ │ │ │ ├── player-stop.svg │ │ │ │ │ │ ├── player-time.svg │ │ │ │ │ │ ├── player-volume-muted.svg │ │ │ │ │ │ ├── player-volume.svg │ │ │ │ │ │ ├── player_eject.svg │ │ │ │ │ │ ├── player_end.svg │ │ │ │ │ │ ├── player_fwd.svg │ │ │ │ │ │ ├── player_new.svg │ │ │ │ │ │ ├── player_pause.svg │ │ │ │ │ │ ├── player_play.svg │ │ │ │ │ │ ├── player_record.svg │ │ │ │ │ │ ├── player_rew.svg │ │ │ │ │ │ ├── player_start.svg │ │ │ │ │ │ ├── player_stop.svg │ │ │ │ │ │ ├── playlist-generator.svg │ │ │ │ │ │ ├── playlist-sort.svg │ │ │ │ │ │ ├── plugins.svg │ │ │ │ │ │ ├── podcast-amarok.svg │ │ │ │ │ │ ├── preferences-activities.svg │ │ │ │ │ │ ├── preferences-indicator-amarok.svg │ │ │ │ │ │ ├── preferences-media-playback-amarok.svg │ │ │ │ │ │ ├── preferences-other.svg │ │ │ │ │ │ ├── preferences-other2.svg │ │ │ │ │ │ ├── preflight-verifier.svg │ │ │ │ │ │ ├── preview-file.svg │ │ │ │ │ │ ├── previous.svg │ │ │ │ │ │ ├── process-stop.svg │ │ │ │ │ │ ├── project-development-close-all.svg │ │ │ │ │ │ ├── project-development-close.svg │ │ │ │ │ │ ├── project-development-new-template.svg │ │ │ │ │ │ ├── project-development.svg │ │ │ │ │ │ ├── project-open.svg │ │ │ │ │ │ ├── quickopen-class.svg │ │ │ │ │ │ ├── quickopen-file.svg │ │ │ │ │ │ ├── quickopen-function.svg │ │ │ │ │ │ ├── quickopen.svg │ │ │ │ │ │ ├── quickview.svg │ │ │ │ │ │ ├── raindrop.svg │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ ├── ratio.svg │ │ │ │ │ │ ├── ratiocrop.svg │ │ │ │ │ │ ├── redeyes.svg │ │ │ │ │ │ ├── redhat-home.svg │ │ │ │ │ │ ├── redo.svg │ │ │ │ │ │ ├── reload.svg │ │ │ │ │ │ ├── reload3.svg │ │ │ │ │ │ ├── reload_all_tabs.svg │ │ │ │ │ │ ├── reload_page.svg │ │ │ │ │ │ ├── remove-amarok.svg │ │ │ │ │ │ ├── remove-link.svg │ │ │ │ │ │ ├── remove.svg │ │ │ │ │ │ ├── resource-calendar-child-insert.svg │ │ │ │ │ │ ├── resource-calendar-child.svg │ │ │ │ │ │ ├── resource-calendar-insert.svg │ │ │ │ │ │ ├── resource-group-new.svg │ │ │ │ │ │ ├── resource-group.svg │ │ │ │ │ │ ├── restoration.svg │ │ │ │ │ │ ├── retweet.svg │ │ │ │ │ │ ├── revert.svg │ │ │ │ │ │ ├── rhythmbox-set-star.svg │ │ │ │ │ │ ├── roll.svg │ │ │ │ │ │ ├── rotate.svg │ │ │ │ │ │ ├── run-build-clean.svg │ │ │ │ │ │ ├── run-build-configure.svg │ │ │ │ │ │ ├── run-build-file.svg │ │ │ │ │ │ ├── run-build-install-root.svg │ │ │ │ │ │ ├── run-build-install.svg │ │ │ │ │ │ ├── run-build-prune.svg │ │ │ │ │ │ ├── run-build.svg │ │ │ │ │ │ ├── run-clean.svg │ │ │ │ │ │ ├── run-install.svg │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ ├── select-rectangular.svg │ │ │ │ │ │ ├── selection-bottom.svg │ │ │ │ │ │ ├── selection-lower.svg │ │ │ │ │ │ ├── selection-make-bitmap-copy.svg │ │ │ │ │ │ ├── selection-move-to-layer-above.svg │ │ │ │ │ │ ├── selection-move-to-layer-below.svg │ │ │ │ │ │ ├── selection-raise.svg │ │ │ │ │ │ ├── selection-top.svg │ │ │ │ │ │ ├── services.svg │ │ │ │ │ │ ├── setroubleshoot_icon.svg │ │ │ │ │ │ ├── shape-choose.svg │ │ │ │ │ │ ├── shapes.svg │ │ │ │ │ │ ├── sharpenimage.svg │ │ │ │ │ │ ├── shear.svg │ │ │ │ │ │ ├── shift-down-y.svg │ │ │ │ │ │ ├── shift-left-x.svg │ │ │ │ │ │ ├── shift-right-x.svg │ │ │ │ │ │ ├── shift-up-y.svg │ │ │ │ │ │ ├── show-dialogs.svg │ │ │ │ │ │ ├── show-grid.svg │ │ │ │ │ │ ├── show-guides.svg │ │ │ │ │ │ ├── show-hidden.svg │ │ │ │ │ │ ├── show-menu.svg │ │ │ │ │ │ ├── show-offline.svg │ │ │ │ │ │ ├── similarartists-amarok.svg │ │ │ │ │ │ ├── smallclock.svg │ │ │ │ │ │ ├── snap-extension.svg │ │ │ │ │ │ ├── snap-guideline.svg │ │ │ │ │ │ ├── snap-intersection.svg │ │ │ │ │ │ ├── snap-node.svg │ │ │ │ │ │ ├── snap-nodes-rotation-center.svg │ │ │ │ │ │ ├── snap-orthogonal.svg │ │ │ │ │ │ ├── sort-name.svg │ │ │ │ │ │ ├── sort-presence.svg │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ ├── speed-high.svg │ │ │ │ │ │ ├── speed-low.svg │ │ │ │ │ │ ├── split.svg │ │ │ │ │ │ ├── standard-connector.svg │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ ├── start.svg │ │ │ │ │ │ ├── sticky_zoom.svg │ │ │ │ │ │ ├── stock-exit.svg │ │ │ │ │ │ ├── stock-help.svg │ │ │ │ │ │ ├── stock-home.svg │ │ │ │ │ │ ├── stock-new-adress-book.svg │ │ │ │ │ │ ├── stock-refresh.svg │ │ │ │ │ │ ├── stock-refresh2.svg │ │ │ │ │ │ ├── stock_about.svg │ │ │ │ │ │ ├── stock_add-bookmark.svg │ │ │ │ │ │ ├── stock_bookmark.svg │ │ │ │ │ │ ├── stock_bottom.svg │ │ │ │ │ │ ├── stock_calc-accept.svg │ │ │ │ │ │ ├── stock_calc-cancel.svg │ │ │ │ │ │ ├── stock_close.svg │ │ │ │ │ │ ├── stock_copy.svg │ │ │ │ │ │ ├── stock_cut.svg │ │ │ │ │ │ ├── stock_delete.svg │ │ │ │ │ │ ├── stock_down.svg │ │ │ │ │ │ ├── stock_edit.svg │ │ │ │ │ │ ├── stock_exit.svg │ │ │ │ │ │ ├── stock_file-properites.svg │ │ │ │ │ │ ├── stock_file-properties.svg │ │ │ │ │ │ ├── stock_first.svg │ │ │ │ │ │ ├── stock_folder-copy.svg │ │ │ │ │ │ ├── stock_folder-move.svg │ │ │ │ │ │ ├── stock_folder-properties.svg │ │ │ │ │ │ ├── stock_fullscreen.svg │ │ │ │ │ │ ├── stock_help-add-bookmark.svg │ │ │ │ │ │ ├── stock_help.svg │ │ │ │ │ │ ├── stock_home.svg │ │ │ │ │ │ ├── stock_last.svg │ │ │ │ │ │ ├── stock_leave-fullscreen.svg │ │ │ │ │ │ ├── stock_left.svg │ │ │ │ │ │ ├── stock_mail-compose.svg │ │ │ │ │ │ ├── stock_mail-filters-apply.svg │ │ │ │ │ │ ├── stock_mail-forward.svg │ │ │ │ │ │ ├── stock_mail-reply-to-all.svg │ │ │ │ │ │ ├── stock_mail-reply.svg │ │ │ │ │ │ ├── stock_mail-send-receive.svg │ │ │ │ │ │ ├── stock_mail-send.svg │ │ │ │ │ │ ├── stock_mark.svg │ │ │ │ │ │ ├── stock_media-fwd.svg │ │ │ │ │ │ ├── stock_media-next.svg │ │ │ │ │ │ ├── stock_media-pause.svg │ │ │ │ │ │ ├── stock_media-play.svg │ │ │ │ │ │ ├── stock_media-prev.svg │ │ │ │ │ │ ├── stock_media-rec.svg │ │ │ │ │ │ ├── stock_media-rev.svg │ │ │ │ │ │ ├── stock_media-rew.svg │ │ │ │ │ │ ├── stock_media-stop.svg │ │ │ │ │ │ ├── stock_navigator.svg │ │ │ │ │ │ ├── stock_new-appointment.svg │ │ │ │ │ │ ├── stock_new-bcard.svg │ │ │ │ │ │ ├── stock_new-card.svg │ │ │ │ │ │ ├── stock_new-dir.svg │ │ │ │ │ │ ├── stock_new-tab.svg │ │ │ │ │ │ ├── stock_new-text.svg │ │ │ │ │ │ ├── stock_new-window.svg │ │ │ │ │ │ ├── stock_no.svg │ │ │ │ │ │ ├── stock_not.svg │ │ │ │ │ │ ├── stock_paste.svg │ │ │ │ │ │ ├── stock_print-preview.svg │ │ │ │ │ │ ├── stock_print-setup.svg │ │ │ │ │ │ ├── stock_print.svg │ │ │ │ │ │ ├── stock_properties.svg │ │ │ │ │ │ ├── stock_redo.svg │ │ │ │ │ │ ├── stock_refresh.svg │ │ │ │ │ │ ├── stock_repeat.svg │ │ │ │ │ │ ├── stock_right.svg │ │ │ │ │ │ ├── stock_save-all.svg │ │ │ │ │ │ ├── stock_save-as.svg │ │ │ │ │ │ ├── stock_save.svg │ │ │ │ │ │ ├── stock_search-and-replace.svg │ │ │ │ │ │ ├── stock_search.svg │ │ │ │ │ │ ├── stock_select-all.svg │ │ │ │ │ │ ├── stock_sent-mail.svg │ │ │ │ │ │ ├── stock_shuffle.svg │ │ │ │ │ │ ├── stock_stop.svg │ │ │ │ │ │ ├── stock_top.svg │ │ │ │ │ │ ├── stock_undo.svg │ │ │ │ │ │ ├── stock_up.svg │ │ │ │ │ │ ├── stock_view-details.svg │ │ │ │ │ │ ├── stock_yes.svg │ │ │ │ │ │ ├── stock_zoom-1.svg │ │ │ │ │ │ ├── stock_zoom-in.svg │ │ │ │ │ │ ├── stock_zoom-out.svg │ │ │ │ │ │ ├── stock_zoom-page.svg │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ ├── story-editor.svg │ │ │ │ │ │ ├── straight-connector.svg │ │ │ │ │ │ ├── stroke-cap-bevel.svg │ │ │ │ │ │ ├── stroke-cap-butt.svg │ │ │ │ │ │ ├── stroke-cap-miter.svg │ │ │ │ │ │ ├── stroke-cap-round.svg │ │ │ │ │ │ ├── stroke-cap-square.svg │ │ │ │ │ │ ├── stroke-join-bevel.svg │ │ │ │ │ │ ├── stroke-join-miter.svg │ │ │ │ │ │ ├── stroke-join-round.svg │ │ │ │ │ │ ├── svn-commit.svg │ │ │ │ │ │ ├── svn-update.svg │ │ │ │ │ │ ├── symbols.svg │ │ │ │ │ │ ├── system-lock-screen.svg │ │ │ │ │ │ ├── system-log-out.svg │ │ │ │ │ │ ├── system-reboot.svg │ │ │ │ │ │ ├── system-restart.svg │ │ │ │ │ │ ├── system-run.svg │ │ │ │ │ │ ├── system-search.svg │ │ │ │ │ │ ├── system-shutdown.svg │ │ │ │ │ │ ├── system-suspend-hibernate.svg │ │ │ │ │ │ ├── system-suspend.svg │ │ │ │ │ │ ├── system-switch-user.svg │ │ │ │ │ │ ├── system-upgrade.svg │ │ │ │ │ │ ├── tab-close-other.svg │ │ │ │ │ │ ├── tab-close.svg │ │ │ │ │ │ ├── tab-detach.svg │ │ │ │ │ │ ├── tab-duplicate.svg │ │ │ │ │ │ ├── tab-new-background.svg │ │ │ │ │ │ ├── tab-new.svg │ │ │ │ │ │ ├── tab_new.svg │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ ├── tag-addressbook.svg │ │ │ │ │ │ ├── tag-assigned.svg │ │ │ │ │ │ ├── tag-delete.svg │ │ │ │ │ │ ├── tag-events.svg │ │ │ │ │ │ ├── tag-folder.svg │ │ │ │ │ │ ├── tag-new.svg │ │ │ │ │ │ ├── tag-people.svg │ │ │ │ │ │ ├── tag-places.svg │ │ │ │ │ │ ├── tag-properties.svg │ │ │ │ │ │ ├── tag-recents.svg │ │ │ │ │ │ ├── tag-reset.svg │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ ├── tags.svg │ │ │ │ │ │ ├── task-new.svg │ │ │ │ │ │ ├── taxes-finances.svg │ │ │ │ │ │ ├── text-field.svg │ │ │ │ │ │ ├── text-frame-link.svg │ │ │ │ │ │ ├── text-frame-unlink.svg │ │ │ │ │ │ ├── text-speak.svg │ │ │ │ │ │ ├── text_letter_spacing.svg │ │ │ │ │ │ ├── text_line_spacing.svg │ │ │ │ │ │ ├── text_subscript.svg │ │ │ │ │ │ ├── text_superscript.svg │ │ │ │ │ │ ├── texture.svg │ │ │ │ │ │ ├── tool-animator.svg │ │ │ │ │ │ ├── tool-measure.svg │ │ │ │ │ │ ├── tool-node-editor.svg │ │ │ │ │ │ ├── tool-pointer.svg │ │ │ │ │ │ ├── tool-spray.svg │ │ │ │ │ │ ├── tools-check-spelling.svg │ │ │ │ │ │ ├── tools-media-optical-burn-image.svg │ │ │ │ │ │ ├── tools-media-optical-burn.svg │ │ │ │ │ │ ├── tools-media-optical-copy.svg │ │ │ │ │ │ ├── tools-media-optical-erase.svg │ │ │ │ │ │ ├── tools-media-optical-format.svg │ │ │ │ │ │ ├── tools-report-bug.svg │ │ │ │ │ │ ├── tools-rip-audio-cd.svg │ │ │ │ │ │ ├── tools-rip-video-cd.svg │ │ │ │ │ │ ├── tools-rip-video-dvd.svg │ │ │ │ │ │ ├── tools-wizard.svg │ │ │ │ │ │ ├── top.svg │ │ │ │ │ │ ├── tracker-search-tool.svg │ │ │ │ │ │ ├── transform-crop-and-resize.svg │ │ │ │ │ │ ├── transform-crop.svg │ │ │ │ │ │ ├── transform-move.svg │ │ │ │ │ │ ├── transform-rotate.svg │ │ │ │ │ │ ├── transform-scale-textbox-points.svg │ │ │ │ │ │ ├── transform-scale.svg │ │ │ │ │ │ ├── transform-shear-down.svg │ │ │ │ │ │ ├── transform-shear-left.svg │ │ │ │ │ │ ├── transform-shear-right.svg │ │ │ │ │ │ ├── transform-shear-up.svg │ │ │ │ │ │ ├── transform-skew-horizontal.svg │ │ │ │ │ │ ├── transform-skew-vertical.svg │ │ │ │ │ │ ├── trash-empty.svg │ │ │ │ │ │ ├── turtle-blue.svg │ │ │ │ │ │ ├── turtle-grey.svg │ │ │ │ │ │ ├── underexposure.svg │ │ │ │ │ │ ├── undo.svg │ │ │ │ │ │ ├── up.svg │ │ │ │ │ │ ├── upcomingevents-amarok.svg │ │ │ │ │ │ ├── upindicator.svg │ │ │ │ │ │ ├── upload-media.svg │ │ │ │ │ │ ├── user-group-delete.svg │ │ │ │ │ │ ├── user-group-new.svg │ │ │ │ │ │ ├── user-group-properties.svg │ │ │ │ │ │ ├── user-identity.svg │ │ │ │ │ │ ├── user-properties.svg │ │ │ │ │ │ ├── utilities.svg │ │ │ │ │ │ ├── videoclip-amarok.svg │ │ │ │ │ │ ├── view-bank-account-checking.svg │ │ │ │ │ │ ├── view-bank-account-savings.svg │ │ │ │ │ │ ├── view-bank-account.svg │ │ │ │ │ │ ├── view-bank.svg │ │ │ │ │ │ ├── view-barcode-add.svg │ │ │ │ │ │ ├── view-barcode.svg │ │ │ │ │ │ ├── view-calendar-agenda.svg │ │ │ │ │ │ ├── view-calendar-birthday.svg │ │ │ │ │ │ ├── view-calendar-day.svg │ │ │ │ │ │ ├── view-calendar-holiday.svg │ │ │ │ │ │ ├── view-calendar-journal.svg │ │ │ │ │ │ ├── view-calendar-list.svg │ │ │ │ │ │ ├── view-calendar-month.svg │ │ │ │ │ │ ├── view-calendar-special-occasion.svg │ │ │ │ │ │ ├── view-calendar-tasks.svg │ │ │ │ │ │ ├── view-calendar-time-spent.svg │ │ │ │ │ │ ├── view-calendar-timeline.svg │ │ │ │ │ │ ├── view-calendar-upcoming-days.svg │ │ │ │ │ │ ├── view-calendar-upcoming-events.svg │ │ │ │ │ │ ├── view-calendar-wedding-anniversary.svg │ │ │ │ │ │ ├── view-calendar-week.svg │ │ │ │ │ │ ├── view-calendar-whatsnext.svg │ │ │ │ │ │ ├── view-calendar-workweek.svg │ │ │ │ │ │ ├── view-calendar.svg │ │ │ │ │ │ ├── view-catalog.svg │ │ │ │ │ │ ├── view-categories.svg │ │ │ │ │ │ ├── view-certificate-add.svg │ │ │ │ │ │ ├── view-certificate-export-secret.svg │ │ │ │ │ │ ├── view-certificate-export-server.svg │ │ │ │ │ │ ├── view-certificate-export.svg │ │ │ │ │ │ ├── view-certificate-import.svg │ │ │ │ │ │ ├── view-certificate-server-configure.svg │ │ │ │ │ │ ├── view-certificate-sign.svg │ │ │ │ │ │ ├── view-certificate.svg │ │ │ │ │ │ ├── view-choose.svg │ │ │ │ │ │ ├── view-close.svg │ │ │ │ │ │ ├── view-conversation-balloon.svg │ │ │ │ │ │ ├── view-file-columns.svg │ │ │ │ │ │ ├── view-filter.svg │ │ │ │ │ │ ├── view-form-action.svg │ │ │ │ │ │ ├── view-form.svg │ │ │ │ │ │ ├── view-fullscreen.svg │ │ │ │ │ │ ├── view-grid.svg │ │ │ │ │ │ ├── view-group.svg │ │ │ │ │ │ ├── view-history.svg │ │ │ │ │ │ ├── view-left-close.svg │ │ │ │ │ │ ├── view-list-compact.svg │ │ │ │ │ │ ├── view-list-details.svg │ │ │ │ │ │ ├── view-list-details2.svg │ │ │ │ │ │ ├── view-list-icons.svg │ │ │ │ │ │ ├── view-list-icons2.svg │ │ │ │ │ │ ├── view-list-text.svg │ │ │ │ │ │ ├── view-list-tree.svg │ │ │ │ │ │ ├── view-list.svg │ │ │ │ │ │ ├── view-media-artist.svg │ │ │ │ │ │ ├── view-media-equalizer.svg │ │ │ │ │ │ ├── view-media-lyrics.svg │ │ │ │ │ │ ├── view-media-playlist.svg │ │ │ │ │ │ ├── view-media-visualization.svg │ │ │ │ │ │ ├── view-multiple-objects.svg │ │ │ │ │ │ ├── view-object-histogram-linear.svg │ │ │ │ │ │ ├── view-object-histogram-logarithmic.svg │ │ │ │ │ │ ├── view-pim-calendar.svg │ │ │ │ │ │ ├── view-pim-contacts.svg │ │ │ │ │ │ ├── view-pim-journal.svg │ │ │ │ │ │ ├── view-pim-mail.svg │ │ │ │ │ │ ├── view-pim-news.svg │ │ │ │ │ │ ├── view-pim-notes.svg │ │ │ │ │ │ ├── view-pim-tasks-pending.svg │ │ │ │ │ │ ├── view-pim-tasks.svg │ │ │ │ │ │ ├── view-presentation.svg │ │ │ │ │ │ ├── view-preview.svg │ │ │ │ │ │ ├── view-process-all-tree.svg │ │ │ │ │ │ ├── view-process-all.svg │ │ │ │ │ │ ├── view-process-own.svg │ │ │ │ │ │ ├── view-process-system.svg │ │ │ │ │ │ ├── view-process-tree.svg │ │ │ │ │ │ ├── view-process-users.svg │ │ │ │ │ │ ├── view-readermode-active.svg │ │ │ │ │ │ ├── view-readermode.svg │ │ │ │ │ │ ├── view-refresh.svg │ │ │ │ │ │ ├── view-resource-calendar.svg │ │ │ │ │ │ ├── view-restore.svg │ │ │ │ │ │ ├── view-right-close.svg │ │ │ │ │ │ ├── view-right-new.svg │ │ │ │ │ │ ├── view-services-scripted-amarok.svg │ │ │ │ │ │ ├── view-sidetree.svg │ │ │ │ │ │ ├── view-sort-ascending.svg │ │ │ │ │ │ ├── view-sort-descending.svg │ │ │ │ │ │ ├── view-split-left-right.svg │ │ │ │ │ │ ├── view-split-top-bottom.svg │ │ │ │ │ │ ├── view-statistics.svg │ │ │ │ │ │ ├── view-table-of-contents-ltr.svg │ │ │ │ │ │ ├── view-table-of-contents-rtl.svg │ │ │ │ │ │ ├── view-task-add.svg │ │ │ │ │ │ ├── view-task-child-add.svg │ │ │ │ │ │ ├── view-task-child.svg │ │ │ │ │ │ ├── view-task.svg │ │ │ │ │ │ ├── view-time-schedule-baselined-add.svg │ │ │ │ │ │ ├── view-time-schedule-baselined-remove.svg │ │ │ │ │ │ ├── view-time-schedule-baselined.svg │ │ │ │ │ │ ├── view-time-schedule-calculus.svg │ │ │ │ │ │ ├── view-time-schedule-child-insert.svg │ │ │ │ │ │ ├── view-time-schedule-edit.svg │ │ │ │ │ │ ├── view-time-schedule-insert.svg │ │ │ │ │ │ ├── view-time-schedule.svg │ │ │ │ │ │ ├── view-web-browser-dom-tree.svg │ │ │ │ │ │ ├── view_choose.svg │ │ │ │ │ │ ├── viewimage.svg │ │ │ │ │ │ ├── viewmag+.svg │ │ │ │ │ │ ├── viewmag-.svg │ │ │ │ │ │ ├── viewmag1.svg │ │ │ │ │ │ ├── viewmagfit.svg │ │ │ │ │ │ ├── visibility.svg │ │ │ │ │ │ ├── whitebalance.svg │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ ├── window-duplicate.svg │ │ │ │ │ │ ├── window-fullscreen.svg │ │ │ │ │ │ ├── window-new.svg │ │ │ │ │ │ ├── window-next.svg │ │ │ │ │ │ ├── window-previous.svg │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ ├── window_fullscreen.svg │ │ │ │ │ │ ├── window_new.svg │ │ │ │ │ │ ├── window_nofullscreen.svg │ │ │ │ │ │ ├── x-clementine-artist.svg │ │ │ │ │ │ ├── x-clementine-shuffle.svg │ │ │ │ │ │ ├── x-shape-connection.svg │ │ │ │ │ │ ├── x-shape-formula.svg │ │ │ │ │ │ ├── x-shape-image.svg │ │ │ │ │ │ ├── x-shape-text.svg │ │ │ │ │ │ ├── x-zoom-in.svg │ │ │ │ │ │ ├── x-zoom-out.svg │ │ │ │ │ │ ├── xfce-system-exit.svg │ │ │ │ │ │ ├── xfce4-appfinder.svg │ │ │ │ │ │ ├── xml-attribute-delete.svg │ │ │ │ │ │ ├── xml-element-new.svg │ │ │ │ │ │ ├── xml-node-delete.svg │ │ │ │ │ │ ├── xml-node-duplicate.svg │ │ │ │ │ │ ├── xml-text-new.svg │ │ │ │ │ │ ├── xy-curve.svg │ │ │ │ │ │ ├── xy-equation-curve.svg │ │ │ │ │ │ ├── xy-fit-curve.svg │ │ │ │ │ │ ├── y-zoom-in.svg │ │ │ │ │ │ ├── y-zoom-out.svg │ │ │ │ │ │ ├── zoom-1-to-2.svg │ │ │ │ │ │ ├── zoom-2-to-1.svg │ │ │ │ │ │ ├── zoom-best-fit.svg │ │ │ │ │ │ ├── zoom-double-size.svg │ │ │ │ │ │ ├── zoom-draw.svg │ │ │ │ │ │ ├── zoom-fit-best.svg │ │ │ │ │ │ ├── zoom-fit-drawing.svg │ │ │ │ │ │ ├── zoom-fit-height.svg │ │ │ │ │ │ ├── zoom-fit-page.svg │ │ │ │ │ │ ├── zoom-fit-selection.svg │ │ │ │ │ │ ├── zoom-fit-width.svg │ │ │ │ │ │ ├── zoom-fit.svg │ │ │ │ │ │ ├── zoom-half-size.svg │ │ │ │ │ │ ├── zoom-in-x.svg │ │ │ │ │ │ ├── zoom-in-y.svg │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ ├── zoom-next.svg │ │ │ │ │ │ ├── zoom-original.svg │ │ │ │ │ │ ├── zoom-out-x.svg │ │ │ │ │ │ ├── zoom-out-y.svg │ │ │ │ │ │ ├── zoom-out.svg │ │ │ │ │ │ ├── zoom-previous.svg │ │ │ │ │ │ ├── zoom-select-fit.svg │ │ │ │ │ │ ├── zoom-select-x.svg │ │ │ │ │ │ ├── zoom-select-y.svg │ │ │ │ │ │ ├── zoom-select.svg │ │ │ │ │ │ └── zoom.svg │ │ │ │ │ ├── symbolic │ │ │ │ │ │ ├── action-unavailable-symbolic.svg │ │ │ │ │ │ ├── address-book-new-symbolic.svg │ │ │ │ │ │ ├── application-exit-symbolic.svg │ │ │ │ │ │ ├── application-menu-symbolic.svg │ │ │ │ │ │ ├── appointment-new-symbolic.svg │ │ │ │ │ │ ├── archive-symbolic.svg │ │ │ │ │ │ ├── bookmark-new-symbolic.svg │ │ │ │ │ │ ├── browser-download-symbolic.svg │ │ │ │ │ │ ├── call-start-symbolic.svg │ │ │ │ │ │ ├── call-stop-symbolic.svg │ │ │ │ │ │ ├── color-select-symbolic.svg │ │ │ │ │ │ ├── contact-new-symbolic.svg │ │ │ │ │ │ ├── document-export-symbolic.svg │ │ │ │ │ │ ├── document-import-symbolic.svg │ │ │ │ │ │ ├── document-new-symbolic.svg │ │ │ │ │ │ ├── document-open-recent-symbolic.svg │ │ │ │ │ │ ├── document-open-symbolic.svg │ │ │ │ │ │ ├── document-page-setup-symbolic.svg │ │ │ │ │ │ ├── document-print-preview-symbolic.svg │ │ │ │ │ │ ├── document-print-symbolic.svg │ │ │ │ │ │ ├── document-properties-symbolic.svg │ │ │ │ │ │ ├── document-revert-rtl-symbolic.svg │ │ │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ │ │ ├── document-revert-symbolic.svg │ │ │ │ │ │ ├── document-save-as-symbolic.svg │ │ │ │ │ │ ├── document-save-symbolic.svg │ │ │ │ │ │ ├── document-send-symbolic.svg │ │ │ │ │ │ ├── edit-clear-all-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-clear-all-symbolic-rtl.svg │ │ │ │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ │ │ │ ├── edit-clear-symbolic.svg │ │ │ │ │ │ ├── edit-copy-symbolic.svg │ │ │ │ │ │ ├── edit-cut-symbolic.svg │ │ │ │ │ │ ├── edit-delete-symbolic.svg │ │ │ │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ │ │ │ ├── edit-find-symbolic.svg │ │ │ │ │ │ ├── edit-paste-symbolic.svg │ │ │ │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-redo-symbolic.svg │ │ │ │ │ │ ├── edit-select-all-symbolic.svg │ │ │ │ │ │ ├── edit-select-symbolic.svg │ │ │ │ │ │ ├── edit-symbolic.svg │ │ │ │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-undo-symbolic.svg │ │ │ │ │ │ ├── find-location-symbolic.svg │ │ │ │ │ │ ├── flag-symbolic.svg │ │ │ │ │ │ ├── folder-new-symbolic.svg │ │ │ │ │ │ ├── font-select-symbolic.svg │ │ │ │ │ │ ├── format-indent-less-rtl-symbolic.svg │ │ │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ │ │ ├── format-indent-less-symbolic.svg │ │ │ │ │ │ ├── format-indent-more-rtl-symbolic.svg │ │ │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ │ │ ├── format-indent-more-symbolic.svg │ │ │ │ │ │ ├── format-justify-center-symbolic.svg │ │ │ │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ │ │ │ ├── format-justify-left-symbolic.svg │ │ │ │ │ │ ├── format-justify-right-symbolic.svg │ │ │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ │ │ ├── format-text-larger-symbolic.svg │ │ │ │ │ │ ├── format-text-remove-formatting-symbolic.svg │ │ │ │ │ │ ├── format-text-smaller-symbolic.svg │ │ │ │ │ │ ├── format-text-strikethrough-symbolic.svg │ │ │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ │ │ ├── forward-rtl-symbolic.svg │ │ │ │ │ │ ├── forward-symbolic.svg │ │ │ │ │ │ ├── go-bottom-symbolic.svg │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ │ │ ├── go-first-symbolic.svg │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ │ │ │ ├── go-jump-symbolic-rtl.svg │ │ │ │ │ │ ├── go-jump-symbolic.svg │ │ │ │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ │ │ ├── go-last-symbolic.svg │ │ │ │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ ├── go-top-symbolic.svg │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ ├── help-about-symbolic.svg │ │ │ │ │ │ ├── help-info-symbolic.svg │ │ │ │ │ │ ├── image-crop-symbolic.svg │ │ │ │ │ │ ├── image-denoise-symbolic.svg │ │ │ │ │ │ ├── image-filter-symbolic.svg │ │ │ │ │ │ ├── image-red-eye-symbolic.svg │ │ │ │ │ │ ├── image-sharpen-symbolic.svg │ │ │ │ │ │ ├── image-straighten-symbolic.svg │ │ │ │ │ │ ├── insert-emoticon-symbolic.svg │ │ │ │ │ │ ├── insert-image-symbolic.svg │ │ │ │ │ │ ├── insert-link-symbolic.svg │ │ │ │ │ │ ├── insert-object-symbolic.svg │ │ │ │ │ │ ├── insert-text-symbolic.svg │ │ │ │ │ │ ├── link-symbolic.svg │ │ │ │ │ │ ├── list-add-symbolic.svg │ │ │ │ │ │ ├── list-remove-all-symbolic.svg │ │ │ │ │ │ ├── list-remove-symbolic.svg │ │ │ │ │ │ ├── location-symbolic.svg │ │ │ │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ │ │ │ ├── mail-mark-junk-symbolic.svg │ │ │ │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ │ │ │ ├── mail-send-symbolic.svg │ │ │ │ │ │ ├── mark-location-symbolic.svg │ │ │ │ │ │ ├── marker-symbolic.svg │ │ │ │ │ │ ├── media-eject-symbolic.svg │ │ │ │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ │ │ │ ├── media-playback-play-pause-symbolic.svg │ │ │ │ │ │ ├── media-playback-start-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playback-start-symbolic.svg │ │ │ │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ │ │ │ ├── media-playlist-consecutive-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playlist-consecutive-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playlist-consecutive-symbolic.svg │ │ │ │ │ │ ├── media-playlist-no-repeat-symbolic.svg │ │ │ │ │ │ ├── media-playlist-no-shuffle-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-once-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-one-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-song-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ │ │ │ ├── media-playlist-shuffle-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ │ │ │ ├── media-record-symbolic.svg │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-skip-forward-symbolic.svg │ │ │ │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ │ │ │ ├── object-flip-horizontal-symbolic.svg │ │ │ │ │ │ ├── object-flip-vertical-symbolic.svg │ │ │ │ │ │ ├── object-rotate-left-symbolic.svg │ │ │ │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ │ │ │ ├── object-select-symbolic.svg │ │ │ │ │ │ ├── object-straighten-symbolic.svg │ │ │ │ │ │ ├── open-menu-symbolic.svg │ │ │ │ │ │ ├── pan-down-symbolic.svg │ │ │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ │ │ ├── pan-end-symbolic.svg │ │ │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ │ │ ├── pan-start-symbolic.svg │ │ │ │ │ │ ├── pan-up-symbolic.svg │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.svg │ │ │ │ │ │ ├── pane-hide-symbolic.svg │ │ │ │ │ │ ├── pane-show-symbolic-rtl.svg │ │ │ │ │ │ ├── pane-show-symbolic.svg │ │ │ │ │ │ ├── process-stop-symbolic.svg │ │ │ │ │ │ ├── reply-all-rtl-symbolic.svg │ │ │ │ │ │ ├── reply-all-symbolic-rtl.svg │ │ │ │ │ │ ├── reply-all-symbolic.svg │ │ │ │ │ │ ├── reply-rtl-symbolic.svg │ │ │ │ │ │ ├── reply-symbolic.svg │ │ │ │ │ │ ├── search-symbolic.svg │ │ │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ │ │ ├── selection-end-symbolic.svg │ │ │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ │ │ ├── selection-start-symbolic.svg │ │ │ │ │ │ ├── send-to-symbolic.svg │ │ │ │ │ │ ├── sidebar-places-symbolic.svg │ │ │ │ │ │ ├── spam-symbolic.svg │ │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ │ ├── start-here-symbolic.svg │ │ │ │ │ │ ├── system-run-symbolic.svg │ │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ │ ├── system-upgrade-symbolic.svg │ │ │ │ │ │ ├── tab-new-symbolic.svg │ │ │ │ │ │ ├── tag-symbolic.svg │ │ │ │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ │ │ │ ├── view-column-symbolic.svg │ │ │ │ │ │ ├── view-compact-symbolic.svg │ │ │ │ │ │ ├── view-continuous-symbolic.svg │ │ │ │ │ │ ├── view-coverflow-symbolic.svg │ │ │ │ │ │ ├── view-dual-symbolic.svg │ │ │ │ │ │ ├── view-filter-rtl-symbolic.svg │ │ │ │ │ │ ├── view-filter-symbolic-rtl.svg │ │ │ │ │ │ ├── view-filter-symbolic.svg │ │ │ │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ │ │ │ ├── view-grid-symbolic.svg │ │ │ │ │ │ ├── view-list-compact-symbolic.svg │ │ │ │ │ │ ├── view-list-images-symbolic.svg │ │ │ │ │ │ ├── view-list-symbolic.svg │ │ │ │ │ │ ├── view-list-video-symbolic.svg │ │ │ │ │ │ ├── view-more-symbolic.svg │ │ │ │ │ │ ├── view-paged-symbolic.svg │ │ │ │ │ │ ├── view-refresh-symbolic.svg │ │ │ │ │ │ ├── view-restore-symbolic.svg │ │ │ │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ │ │ │ ├── view-sort-descending-symbolic.svg │ │ │ │ │ │ ├── window-close-symbolic.svg │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ ├── window-maximize-symbolic.svg │ │ │ │ │ │ ├── window-minimize-symbolic.svg │ │ │ │ │ │ ├── window-restore-symbolic.svg │ │ │ │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ │ │ │ ├── zoom-in-symbolic.svg │ │ │ │ │ │ ├── zoom-original-symbolic.svg │ │ │ │ │ │ └── zoom-out-symbolic.svg │ │ │ │ │ └── symbolic@2x │ │ │ │ │ │ ├── action-unavailable-symbolic.svg │ │ │ │ │ │ ├── address-book-new-symbolic.svg │ │ │ │ │ │ ├── application-exit-symbolic.svg │ │ │ │ │ │ ├── application-menu-symbolic.svg │ │ │ │ │ │ ├── appointment-new-symbolic.svg │ │ │ │ │ │ ├── archive-symbolic.svg │ │ │ │ │ │ ├── bookmark-new-symbolic.svg │ │ │ │ │ │ ├── browser-download-symbolic.svg │ │ │ │ │ │ ├── call-start-symbolic.svg │ │ │ │ │ │ ├── call-stop-symbolic.svg │ │ │ │ │ │ ├── color-select-symbolic.svg │ │ │ │ │ │ ├── contact-new-symbolic.svg │ │ │ │ │ │ ├── document-export-symbolic.svg │ │ │ │ │ │ ├── document-import-symbolic.svg │ │ │ │ │ │ ├── document-new-symbolic.svg │ │ │ │ │ │ ├── document-open-recent-symbolic.svg │ │ │ │ │ │ ├── document-open-symbolic.svg │ │ │ │ │ │ ├── document-page-setup-symbolic.svg │ │ │ │ │ │ ├── document-print-preview-symbolic.svg │ │ │ │ │ │ ├── document-print-symbolic.svg │ │ │ │ │ │ ├── document-properties-symbolic.svg │ │ │ │ │ │ ├── document-revert-rtl-symbolic.svg │ │ │ │ │ │ ├── document-revert-symbolic-rtl.svg │ │ │ │ │ │ ├── document-revert-symbolic.svg │ │ │ │ │ │ ├── document-save-as-symbolic.svg │ │ │ │ │ │ ├── document-save-symbolic.svg │ │ │ │ │ │ ├── document-send-symbolic.svg │ │ │ │ │ │ ├── edit-clear-all-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-clear-all-symbolic-rtl.svg │ │ │ │ │ │ ├── edit-clear-all-symbolic.svg │ │ │ │ │ │ ├── edit-clear-symbolic.svg │ │ │ │ │ │ ├── edit-copy-symbolic.svg │ │ │ │ │ │ ├── edit-cut-symbolic.svg │ │ │ │ │ │ ├── edit-delete-symbolic.svg │ │ │ │ │ │ ├── edit-find-replace-symbolic.svg │ │ │ │ │ │ ├── edit-find-symbolic.svg │ │ │ │ │ │ ├── edit-paste-symbolic.svg │ │ │ │ │ │ ├── edit-redo-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-redo-symbolic.svg │ │ │ │ │ │ ├── edit-select-all-symbolic.svg │ │ │ │ │ │ ├── edit-select-symbolic.svg │ │ │ │ │ │ ├── edit-symbolic.svg │ │ │ │ │ │ ├── edit-undo-rtl-symbolic.svg │ │ │ │ │ │ ├── edit-undo-symbolic.svg │ │ │ │ │ │ ├── find-location-symbolic.svg │ │ │ │ │ │ ├── flag-symbolic.svg │ │ │ │ │ │ ├── folder-new-symbolic.svg │ │ │ │ │ │ ├── font-select-symbolic.svg │ │ │ │ │ │ ├── format-indent-less-rtl-symbolic.svg │ │ │ │ │ │ ├── format-indent-less-symbolic-rtl.svg │ │ │ │ │ │ ├── format-indent-less-symbolic.svg │ │ │ │ │ │ ├── format-indent-more-rtl-symbolic.svg │ │ │ │ │ │ ├── format-indent-more-symbolic-rtl.svg │ │ │ │ │ │ ├── format-indent-more-symbolic.svg │ │ │ │ │ │ ├── format-justify-center-symbolic.svg │ │ │ │ │ │ ├── format-justify-fill-symbolic.svg │ │ │ │ │ │ ├── format-justify-left-symbolic.svg │ │ │ │ │ │ ├── format-justify-right-symbolic.svg │ │ │ │ │ │ ├── format-text-bold-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-ltr-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-rtl-symbolic.svg │ │ │ │ │ │ ├── format-text-direction-symbolic-rtl.svg │ │ │ │ │ │ ├── format-text-italic-symbolic.svg │ │ │ │ │ │ ├── format-text-larger-symbolic.svg │ │ │ │ │ │ ├── format-text-remove-formatting-symbolic.svg │ │ │ │ │ │ ├── format-text-smaller-symbolic.svg │ │ │ │ │ │ ├── format-text-strikethrough-symbolic.svg │ │ │ │ │ │ ├── format-text-underline-symbolic.svg │ │ │ │ │ │ ├── forward-rtl-symbolic.svg │ │ │ │ │ │ ├── forward-symbolic.svg │ │ │ │ │ │ ├── go-bottom-symbolic.svg │ │ │ │ │ │ ├── go-down-symbolic.svg │ │ │ │ │ │ ├── go-first-rtl-symbolic.svg │ │ │ │ │ │ ├── go-first-symbolic-rtl.svg │ │ │ │ │ │ ├── go-first-symbolic.svg │ │ │ │ │ │ ├── go-home-symbolic.svg │ │ │ │ │ │ ├── go-jump-rtl-symbolic.svg │ │ │ │ │ │ ├── go-jump-symbolic-rtl.svg │ │ │ │ │ │ ├── go-jump-symbolic.svg │ │ │ │ │ │ ├── go-last-rtl-symbolic.svg │ │ │ │ │ │ ├── go-last-symbolic-rtl.svg │ │ │ │ │ │ ├── go-last-symbolic.svg │ │ │ │ │ │ ├── go-next-rtl-symbolic.svg │ │ │ │ │ │ ├── go-next-symbolic-rtl.svg │ │ │ │ │ │ ├── go-next-symbolic.svg │ │ │ │ │ │ ├── go-previous-context.svg │ │ │ │ │ │ ├── go-previous-rtl-symbolic.svg │ │ │ │ │ │ ├── go-previous-symbolic-rtl.svg │ │ │ │ │ │ ├── go-previous-symbolic.svg │ │ │ │ │ │ ├── go-top-symbolic.svg │ │ │ │ │ │ ├── go-up-symbolic.svg │ │ │ │ │ │ ├── help-about-symbolic.svg │ │ │ │ │ │ ├── help-info-symbolic.svg │ │ │ │ │ │ ├── image-crop-symbolic.svg │ │ │ │ │ │ ├── image-denoise-symbolic.svg │ │ │ │ │ │ ├── image-filter-symbolic.svg │ │ │ │ │ │ ├── image-red-eye-symbolic.svg │ │ │ │ │ │ ├── image-sharpen-symbolic.svg │ │ │ │ │ │ ├── image-straighten-symbolic.svg │ │ │ │ │ │ ├── insert-emoticon-symbolic.svg │ │ │ │ │ │ ├── insert-image-symbolic.svg │ │ │ │ │ │ ├── insert-link-symbolic.svg │ │ │ │ │ │ ├── insert-object-symbolic.svg │ │ │ │ │ │ ├── insert-text-symbolic.svg │ │ │ │ │ │ ├── link-symbolic.svg │ │ │ │ │ │ ├── list-add-symbolic.svg │ │ │ │ │ │ ├── list-remove-all-symbolic.svg │ │ │ │ │ │ ├── list-remove-symbolic.svg │ │ │ │ │ │ ├── location-symbolic.svg │ │ │ │ │ │ ├── mail-mark-important-symbolic.svg │ │ │ │ │ │ ├── mail-mark-junk-symbolic.svg │ │ │ │ │ │ ├── mail-send-receive-symbolic.svg │ │ │ │ │ │ ├── mail-send-symbolic.svg │ │ │ │ │ │ ├── mark-location-symbolic.svg │ │ │ │ │ │ ├── marker-symbolic.svg │ │ │ │ │ │ ├── media-eject-symbolic.svg │ │ │ │ │ │ ├── media-playback-pause-symbolic.svg │ │ │ │ │ │ ├── media-playback-play-pause-symbolic.svg │ │ │ │ │ │ ├── media-playback-start-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playback-start-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playback-start-symbolic.svg │ │ │ │ │ │ ├── media-playback-stop-symbolic.svg │ │ │ │ │ │ ├── media-playlist-consecutive-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playlist-consecutive-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playlist-consecutive-symbolic.svg │ │ │ │ │ │ ├── media-playlist-no-repeat-symbolic.svg │ │ │ │ │ │ ├── media-playlist-no-shuffle-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-once-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-one-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-song-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playlist-repeat-song-symbolic.svg │ │ │ │ │ │ ├── media-playlist-repeat-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playlist-repeat-symbolic.svg │ │ │ │ │ │ ├── media-playlist-shuffle-rtl-symbolic.svg │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic-rtl.svg │ │ │ │ │ │ ├── media-playlist-shuffle-symbolic.svg │ │ │ │ │ │ ├── media-record-symbolic.svg │ │ │ │ │ │ ├── media-seek-backward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-seek-backward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-seek-backward-symbolic.svg │ │ │ │ │ │ ├── media-seek-forward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-seek-forward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-seek-forward-symbolic.svg │ │ │ │ │ │ ├── media-skip-backward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-skip-backward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-skip-backward-symbolic.svg │ │ │ │ │ │ ├── media-skip-forward-rtl-symbolic.svg │ │ │ │ │ │ ├── media-skip-forward-symbolic-rtl.svg │ │ │ │ │ │ ├── media-skip-forward-symbolic.svg │ │ │ │ │ │ ├── media-view-subtitles-symbolic.svg │ │ │ │ │ │ ├── object-flip-horizontal-symbolic.svg │ │ │ │ │ │ ├── object-flip-vertical-symbolic.svg │ │ │ │ │ │ ├── object-rotate-left-symbolic.svg │ │ │ │ │ │ ├── object-rotate-right-symbolic.svg │ │ │ │ │ │ ├── object-select-symbolic.svg │ │ │ │ │ │ ├── object-straighten-symbolic.svg │ │ │ │ │ │ ├── open-menu-symbolic.svg │ │ │ │ │ │ ├── pan-down-symbolic.svg │ │ │ │ │ │ ├── pan-end-symbolic-rtl.svg │ │ │ │ │ │ ├── pan-end-symbolic.svg │ │ │ │ │ │ ├── pan-start-symbolic-rtl.svg │ │ │ │ │ │ ├── pan-start-symbolic.svg │ │ │ │ │ │ ├── pan-up-symbolic.svg │ │ │ │ │ │ ├── pane-hide-symbolic-rtl.svg │ │ │ │ │ │ ├── pane-hide-symbolic.svg │ │ │ │ │ │ ├── pane-show-symbolic-rtl.svg │ │ │ │ │ │ ├── pane-show-symbolic.svg │ │ │ │ │ │ ├── process-stop-symbolic.svg │ │ │ │ │ │ ├── reply-all-rtl-symbolic.svg │ │ │ │ │ │ ├── reply-all-symbolic-rtl.svg │ │ │ │ │ │ ├── reply-all-symbolic.svg │ │ │ │ │ │ ├── reply-rtl-symbolic.svg │ │ │ │ │ │ ├── reply-symbolic.svg │ │ │ │ │ │ ├── search-symbolic.svg │ │ │ │ │ │ ├── selection-end-symbolic-rtl.svg │ │ │ │ │ │ ├── selection-end-symbolic.svg │ │ │ │ │ │ ├── selection-start-symbolic-rtl.svg │ │ │ │ │ │ ├── selection-start-symbolic.svg │ │ │ │ │ │ ├── send-to-symbolic.svg │ │ │ │ │ │ ├── sidebar-places-symbolic.svg │ │ │ │ │ │ ├── spam-symbolic.svg │ │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ │ ├── start-here-symbolic.svg │ │ │ │ │ │ ├── system-run-symbolic.svg │ │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ │ ├── system-upgrade-symbolic.svg │ │ │ │ │ │ ├── tab-new-symbolic.svg │ │ │ │ │ │ ├── tag-symbolic.svg │ │ │ │ │ │ ├── tools-check-spelling-symbolic.svg │ │ │ │ │ │ ├── view-column-symbolic.svg │ │ │ │ │ │ ├── view-compact-symbolic.svg │ │ │ │ │ │ ├── view-continuous-symbolic.svg │ │ │ │ │ │ ├── view-coverflow-symbolic.svg │ │ │ │ │ │ ├── view-dual-symbolic.svg │ │ │ │ │ │ ├── view-filter-rtl-symbolic.svg │ │ │ │ │ │ ├── view-filter-symbolic-rtl.svg │ │ │ │ │ │ ├── view-filter-symbolic.svg │ │ │ │ │ │ ├── view-fullscreen-symbolic.svg │ │ │ │ │ │ ├── view-grid-symbolic.svg │ │ │ │ │ │ ├── view-list-compact-symbolic.svg │ │ │ │ │ │ ├── view-list-images-symbolic.svg │ │ │ │ │ │ ├── view-list-symbolic.svg │ │ │ │ │ │ ├── view-list-video-symbolic.svg │ │ │ │ │ │ ├── view-more-symbolic.svg │ │ │ │ │ │ ├── view-paged-symbolic.svg │ │ │ │ │ │ ├── view-refresh-symbolic.svg │ │ │ │ │ │ ├── view-restore-symbolic.svg │ │ │ │ │ │ ├── view-sort-ascending-symbolic.svg │ │ │ │ │ │ ├── view-sort-descending-symbolic.svg │ │ │ │ │ │ ├── window-close-symbolic.svg │ │ │ │ │ │ ├── window-close.svg │ │ │ │ │ │ ├── window-maximize-symbolic.svg │ │ │ │ │ │ ├── window-minimize-symbolic.svg │ │ │ │ │ │ ├── window-restore-symbolic.svg │ │ │ │ │ │ ├── zoom-fit-best-symbolic.svg │ │ │ │ │ │ ├── zoom-in-symbolic.svg │ │ │ │ │ │ ├── zoom-original-symbolic.svg │ │ │ │ │ │ └── zoom-out-symbolic.svg │ │ │ │ │ ├── emblems │ │ │ │ │ ├── scalable │ │ │ │ │ │ ├── avatar-default-dark.svg │ │ │ │ │ │ ├── avatar-default-light.svg │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ ├── emblem-checked.svg │ │ │ │ │ │ ├── emblem-default.svg │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ ├── emblem-important.svg │ │ │ │ │ │ ├── emblem-information.svg │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ ├── emblem-mounted.svg │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ ├── emblem-nowrite.svg │ │ │ │ │ │ ├── emblem-pause.svg │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ ├── emblem-question.svg │ │ │ │ │ │ ├── emblem-readonly.svg │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ ├── emblem-success.svg │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ ├── emblem-unavailable.svg │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ ├── emblem-unmounted.svg │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ ├── emblem-warning.svg │ │ │ │ │ │ ├── emblem-web.svg │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ ├── vcs-conflicting.svg │ │ │ │ │ │ ├── vcs-locally-modified-unstaged.svg │ │ │ │ │ │ ├── vcs-locally-modified.svg │ │ │ │ │ │ ├── vcs-normal.svg │ │ │ │ │ │ ├── vcs-removed.svg │ │ │ │ │ │ └── vcs-update-required.svg │ │ │ │ │ ├── scalable@2x │ │ │ │ │ │ ├── avatar-default-dark.svg │ │ │ │ │ │ ├── avatar-default-light.svg │ │ │ │ │ │ ├── avatar-default.svg │ │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ │ ├── emblem-added.svg │ │ │ │ │ │ ├── emblem-checked.svg │ │ │ │ │ │ ├── emblem-default.svg │ │ │ │ │ │ ├── emblem-error.svg │ │ │ │ │ │ ├── emblem-important.svg │ │ │ │ │ │ ├── emblem-information.svg │ │ │ │ │ │ ├── emblem-locked.svg │ │ │ │ │ │ ├── emblem-mounted.svg │ │ │ │ │ │ ├── emblem-noread.svg │ │ │ │ │ │ ├── emblem-nowrite.svg │ │ │ │ │ │ ├── emblem-pause.svg │ │ │ │ │ │ ├── emblem-photos.svg │ │ │ │ │ │ ├── emblem-question.svg │ │ │ │ │ │ ├── emblem-readonly.svg │ │ │ │ │ │ ├── emblem-remove.svg │ │ │ │ │ │ ├── emblem-success.svg │ │ │ │ │ │ ├── emblem-symbolic-link.svg │ │ │ │ │ │ ├── emblem-system.svg │ │ │ │ │ │ ├── emblem-unavailable.svg │ │ │ │ │ │ ├── emblem-unlocked.svg │ │ │ │ │ │ ├── emblem-unmounted.svg │ │ │ │ │ │ ├── emblem-unreadable.svg │ │ │ │ │ │ ├── emblem-warning.svg │ │ │ │ │ │ ├── emblem-web.svg │ │ │ │ │ │ ├── rating-unrated.svg │ │ │ │ │ │ ├── rating.svg │ │ │ │ │ │ ├── vcs-added.svg │ │ │ │ │ │ ├── vcs-conflicting.svg │ │ │ │ │ │ ├── vcs-locally-modified-unstaged.svg │ │ │ │ │ │ ├── vcs-locally-modified.svg │ │ │ │ │ │ ├── vcs-normal.svg │ │ │ │ │ │ ├── vcs-removed.svg │ │ │ │ │ │ └── vcs-update-required.svg │ │ │ │ │ ├── symbolic │ │ │ │ │ │ ├── emblem-default-symbolic.svg │ │ │ │ │ │ ├── emblem-documents-symbolic.svg │ │ │ │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ │ │ │ ├── emblem-important-symbolic.svg │ │ │ │ │ │ ├── emblem-music-symbolic.svg │ │ │ │ │ │ ├── emblem-ok-symbolic.svg │ │ │ │ │ │ ├── emblem-photos-symbolic.svg │ │ │ │ │ │ ├── emblem-shared-symbolic.svg │ │ │ │ │ │ ├── emblem-symbolic-link-symbolic.svg │ │ │ │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ │ │ │ ├── emblem-system-symbolic.svg │ │ │ │ │ │ └── emblem-videos-symbolic.svg │ │ │ │ │ └── symbolic@2x │ │ │ │ │ │ ├── emblem-default-symbolic.svg │ │ │ │ │ │ ├── emblem-documents-symbolic.svg │ │ │ │ │ │ ├── emblem-favorite-symbolic.svg │ │ │ │ │ │ ├── emblem-important-symbolic.svg │ │ │ │ │ │ ├── emblem-music-symbolic.svg │ │ │ │ │ │ ├── emblem-ok-symbolic.svg │ │ │ │ │ │ ├── emblem-photos-symbolic.svg │ │ │ │ │ │ ├── emblem-shared-symbolic.svg │ │ │ │ │ │ ├── emblem-symbolic-link-symbolic.svg │ │ │ │ │ │ ├── emblem-synchronizing-symbolic.svg │ │ │ │ │ │ ├── emblem-system-symbolic.svg │ │ │ │ │ │ └── emblem-videos-symbolic.svg │ │ │ │ │ ├── index.theme │ │ │ │ │ └── status │ │ │ │ │ ├── scalable │ │ │ │ │ ├── appointment-missed.svg │ │ │ │ │ ├── appointment-soon.svg │ │ │ │ │ ├── audio-volume-high.svg │ │ │ │ │ ├── audio-volume-low.svg │ │ │ │ │ ├── audio-volume-medium.svg │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ ├── battery-000-charging.svg │ │ │ │ │ ├── battery-000.svg │ │ │ │ │ ├── battery-020-charging.svg │ │ │ │ │ ├── battery-020.svg │ │ │ │ │ ├── battery-040-charging.svg │ │ │ │ │ ├── battery-040.svg │ │ │ │ │ ├── battery-060-charging.svg │ │ │ │ │ ├── battery-060.svg │ │ │ │ │ ├── battery-080-charging.svg │ │ │ │ │ ├── battery-080.svg │ │ │ │ │ ├── battery-100-charging.svg │ │ │ │ │ ├── battery-100.svg │ │ │ │ │ ├── battery-caution-charging.svg │ │ │ │ │ ├── battery-caution.svg │ │ │ │ │ ├── battery-empty-charging.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full-charged.svg │ │ │ │ │ ├── battery-full-charging.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-good-charging.svg │ │ │ │ │ ├── battery-good.svg │ │ │ │ │ ├── battery-low-charging.svg │ │ │ │ │ ├── battery-low.svg │ │ │ │ │ ├── battery-missing.svg │ │ │ │ │ ├── camera-off.svg │ │ │ │ │ ├── camera-on.svg │ │ │ │ │ ├── camera-ready.svg │ │ │ │ │ ├── clipit-trayicon.svg │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ ├── firewall-applet-error.svg │ │ │ │ │ ├── firewall-applet.svg │ │ │ │ │ ├── gnome-fs-loading-icon.svg │ │ │ │ │ ├── gpm-battery-000-charging.svg │ │ │ │ │ ├── gpm-battery-000.svg │ │ │ │ │ ├── gpm-battery-020-charging.svg │ │ │ │ │ ├── gpm-battery-020.svg │ │ │ │ │ ├── gpm-battery-040-charging.svg │ │ │ │ │ ├── gpm-battery-040.svg │ │ │ │ │ ├── gpm-battery-060-charging.svg │ │ │ │ │ ├── gpm-battery-060.svg │ │ │ │ │ ├── gpm-battery-080-charging.svg │ │ │ │ │ ├── gpm-battery-080.svg │ │ │ │ │ ├── gpm-battery-100-charging.svg │ │ │ │ │ ├── gpm-battery-100.svg │ │ │ │ │ ├── gpm-battery-empty.svg │ │ │ │ │ ├── gpm-battery-missing.svg │ │ │ │ │ ├── gtk-dialog-authentication.svg │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ ├── laptop-connected.svg │ │ │ │ │ ├── laptop-disconnected.svg │ │ │ │ │ ├── laptop-trusted.svg │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ ├── mic-off.svg │ │ │ │ │ ├── mic-on.svg │ │ │ │ │ ├── mic-ready.svg │ │ │ │ │ ├── microphone-sensitivity-high.svg │ │ │ │ │ ├── microphone-sensitivity-low.svg │ │ │ │ │ ├── microphone-sensitivity-medium.svg │ │ │ │ │ ├── microphone-sensitivity-muted.svg │ │ │ │ │ ├── non-starred.svg │ │ │ │ │ ├── offline.svg │ │ │ │ │ ├── online.svg │ │ │ │ │ ├── printer-error.svg │ │ │ │ │ ├── printer-printing.svg │ │ │ │ │ ├── redshift-status-off.svg │ │ │ │ │ ├── redshift-status-on.svg │ │ │ │ │ ├── security-high.svg │ │ │ │ │ ├── security-low.svg │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ ├── semi-starred.svg │ │ │ │ │ ├── smartphone-connected.svg │ │ │ │ │ ├── smartphone-disconnected.svg │ │ │ │ │ ├── smartphone-trusted.svg │ │ │ │ │ ├── starred.svg │ │ │ │ │ ├── state-download.svg │ │ │ │ │ ├── state-error.svg │ │ │ │ │ ├── state-information.svg │ │ │ │ │ ├── state-offline.svg │ │ │ │ │ ├── state-ok.svg │ │ │ │ │ ├── state-pause.svg │ │ │ │ │ ├── state-sync.svg │ │ │ │ │ ├── state-warning.svg │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ ├── tablet-connected.svg │ │ │ │ │ ├── tablet-disconnected.svg │ │ │ │ │ ├── tablet-trusted.svg │ │ │ │ │ ├── update-high.svg │ │ │ │ │ ├── update-low.svg │ │ │ │ │ ├── update-medium.svg │ │ │ │ │ ├── update-none.svg │ │ │ │ │ ├── user-available.svg │ │ │ │ │ ├── user-away-extended.svg │ │ │ │ │ ├── user-away.svg │ │ │ │ │ ├── user-busy.svg │ │ │ │ │ ├── user-extended-away.svg │ │ │ │ │ ├── user-idle.svg │ │ │ │ │ ├── user-invisible.svg │ │ │ │ │ ├── user-offline.svg │ │ │ │ │ ├── user-online.svg │ │ │ │ │ ├── xfce4-battery-caution-charging.svg │ │ │ │ │ ├── xfce4-battery-caution.svg │ │ │ │ │ ├── xfce4-battery-critical-charging.svg │ │ │ │ │ ├── xfce4-battery-critical.svg │ │ │ │ │ ├── xfce4-battery-full-charging.svg │ │ │ │ │ ├── xfce4-battery-full.svg │ │ │ │ │ ├── xfce4-battery-good-charging.svg │ │ │ │ │ ├── xfce4-battery-good.svg │ │ │ │ │ ├── xfce4-battery-low-charging.svg │ │ │ │ │ ├── xfce4-battery-low.svg │ │ │ │ │ ├── xfce4-battery-missing.svg │ │ │ │ │ ├── xfce4-battery-ok-charging.svg │ │ │ │ │ ├── xfce4-battery-ok.svg │ │ │ │ │ ├── xfce4-battery-plugin.svg │ │ │ │ │ ├── xfpm-battery-000-charging.svg │ │ │ │ │ ├── xfpm-battery-000.svg │ │ │ │ │ ├── xfpm-battery-020-charging.svg │ │ │ │ │ ├── xfpm-battery-020.svg │ │ │ │ │ ├── xfpm-battery-040-charging.svg │ │ │ │ │ ├── xfpm-battery-040.svg │ │ │ │ │ ├── xfpm-battery-060-charging.svg │ │ │ │ │ ├── xfpm-battery-060.svg │ │ │ │ │ ├── xfpm-battery-080-charging.svg │ │ │ │ │ ├── xfpm-battery-080.svg │ │ │ │ │ ├── xfpm-battery-100-charging.svg │ │ │ │ │ ├── xfpm-battery-100.svg │ │ │ │ │ ├── xfpm-battery-caution-charging.svg │ │ │ │ │ ├── xfpm-battery-caution.svg │ │ │ │ │ ├── xfpm-battery-charged.svg │ │ │ │ │ ├── xfpm-battery-critical-charging.svg │ │ │ │ │ ├── xfpm-battery-critical.svg │ │ │ │ │ ├── xfpm-battery-empty.svg │ │ │ │ │ ├── xfpm-battery-full-charging.svg │ │ │ │ │ ├── xfpm-battery-full.svg │ │ │ │ │ ├── xfpm-battery-good-charging.svg │ │ │ │ │ ├── xfpm-battery-good.svg │ │ │ │ │ ├── xfpm-battery-low-charging.svg │ │ │ │ │ ├── xfpm-battery-low.svg │ │ │ │ │ ├── xfpm-battery-missing.svg │ │ │ │ │ ├── xfpm-battery-ok-charging.svg │ │ │ │ │ ├── xfpm-battery-ok.svg │ │ │ │ │ ├── xfpm-primary-000-charging.svg │ │ │ │ │ ├── xfpm-primary-000.svg │ │ │ │ │ ├── xfpm-primary-020-charging.svg │ │ │ │ │ ├── xfpm-primary-020.svg │ │ │ │ │ ├── xfpm-primary-040-charging.svg │ │ │ │ │ ├── xfpm-primary-040.svg │ │ │ │ │ ├── xfpm-primary-060-charging.svg │ │ │ │ │ ├── xfpm-primary-060.svg │ │ │ │ │ ├── xfpm-primary-080-charging.svg │ │ │ │ │ ├── xfpm-primary-080.svg │ │ │ │ │ ├── xfpm-primary-100-charging.svg │ │ │ │ │ ├── xfpm-primary-100.svg │ │ │ │ │ ├── xfpm-primary-caution-charging.svg │ │ │ │ │ ├── xfpm-primary-caution.svg │ │ │ │ │ ├── xfpm-primary-charged.svg │ │ │ │ │ ├── xfpm-primary-critical-charging.svg │ │ │ │ │ ├── xfpm-primary-critical.svg │ │ │ │ │ ├── xfpm-primary-empty.svg │ │ │ │ │ ├── xfpm-primary-full-charging.svg │ │ │ │ │ ├── xfpm-primary-full.svg │ │ │ │ │ ├── xfpm-primary-good-charging.svg │ │ │ │ │ ├── xfpm-primary-good.svg │ │ │ │ │ ├── xfpm-primary-low-charging.svg │ │ │ │ │ ├── xfpm-primary-low.svg │ │ │ │ │ ├── xfpm-primary-missing.svg │ │ │ │ │ ├── xfpm-primary-ok-charging.svg │ │ │ │ │ └── xfpm-primary-ok.svg │ │ │ │ │ ├── scalable@2x │ │ │ │ │ ├── appointment-missed.svg │ │ │ │ │ ├── appointment-soon.svg │ │ │ │ │ ├── audio-volume-high.svg │ │ │ │ │ ├── audio-volume-low.svg │ │ │ │ │ ├── audio-volume-medium.svg │ │ │ │ │ ├── audio-volume-muted.svg │ │ │ │ │ ├── battery-000-charging.svg │ │ │ │ │ ├── battery-000.svg │ │ │ │ │ ├── battery-020-charging.svg │ │ │ │ │ ├── battery-020.svg │ │ │ │ │ ├── battery-040-charging.svg │ │ │ │ │ ├── battery-040.svg │ │ │ │ │ ├── battery-060-charging.svg │ │ │ │ │ ├── battery-060.svg │ │ │ │ │ ├── battery-080-charging.svg │ │ │ │ │ ├── battery-080.svg │ │ │ │ │ ├── battery-100-charging.svg │ │ │ │ │ ├── battery-100.svg │ │ │ │ │ ├── battery-caution-charging.svg │ │ │ │ │ ├── battery-caution.svg │ │ │ │ │ ├── battery-empty-charging.svg │ │ │ │ │ ├── battery-empty.svg │ │ │ │ │ ├── battery-full-charged.svg │ │ │ │ │ ├── battery-full-charging.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-good-charging.svg │ │ │ │ │ ├── battery-good.svg │ │ │ │ │ ├── battery-low-charging.svg │ │ │ │ │ ├── battery-low.svg │ │ │ │ │ ├── battery-missing.svg │ │ │ │ │ ├── camera-off.svg │ │ │ │ │ ├── camera-on.svg │ │ │ │ │ ├── camera-ready.svg │ │ │ │ │ ├── clipit-trayicon.svg │ │ │ │ │ ├── dialog-error.svg │ │ │ │ │ ├── dialog-information.svg │ │ │ │ │ ├── dialog-password.svg │ │ │ │ │ ├── dialog-question.svg │ │ │ │ │ ├── dialog-warning.svg │ │ │ │ │ ├── firewall-applet-error.svg │ │ │ │ │ ├── firewall-applet.svg │ │ │ │ │ ├── gnome-fs-loading-icon.svg │ │ │ │ │ ├── gpm-battery-000-charging.svg │ │ │ │ │ ├── gpm-battery-000.svg │ │ │ │ │ ├── gpm-battery-020-charging.svg │ │ │ │ │ ├── gpm-battery-020.svg │ │ │ │ │ ├── gpm-battery-040-charging.svg │ │ │ │ │ ├── gpm-battery-040.svg │ │ │ │ │ ├── gpm-battery-060-charging.svg │ │ │ │ │ ├── gpm-battery-060.svg │ │ │ │ │ ├── gpm-battery-080-charging.svg │ │ │ │ │ ├── gpm-battery-080.svg │ │ │ │ │ ├── gpm-battery-100-charging.svg │ │ │ │ │ ├── gpm-battery-100.svg │ │ │ │ │ ├── gpm-battery-empty.svg │ │ │ │ │ ├── gpm-battery-missing.svg │ │ │ │ │ ├── gtk-dialog-authentication.svg │ │ │ │ │ ├── gtk-dialog-error.svg │ │ │ │ │ ├── gtk-dialog-info.svg │ │ │ │ │ ├── gtk-dialog-question.svg │ │ │ │ │ ├── gtk-dialog-warning.svg │ │ │ │ │ ├── image-loading.svg │ │ │ │ │ ├── laptop-connected.svg │ │ │ │ │ ├── laptop-disconnected.svg │ │ │ │ │ ├── laptop-trusted.svg │ │ │ │ │ ├── messagebox_critical.svg │ │ │ │ │ ├── messagebox_info.svg │ │ │ │ │ ├── messagebox_warning.svg │ │ │ │ │ ├── mic-off.svg │ │ │ │ │ ├── mic-on.svg │ │ │ │ │ ├── mic-ready.svg │ │ │ │ │ ├── microphone-sensitivity-high.svg │ │ │ │ │ ├── microphone-sensitivity-low.svg │ │ │ │ │ ├── microphone-sensitivity-medium.svg │ │ │ │ │ ├── microphone-sensitivity-muted.svg │ │ │ │ │ ├── non-starred.svg │ │ │ │ │ ├── offline.svg │ │ │ │ │ ├── online.svg │ │ │ │ │ ├── printer-error.svg │ │ │ │ │ ├── printer-printing.svg │ │ │ │ │ ├── redshift-status-off.svg │ │ │ │ │ ├── redshift-status-on.svg │ │ │ │ │ ├── security-high.svg │ │ │ │ │ ├── security-low.svg │ │ │ │ │ ├── security-medium.svg │ │ │ │ │ ├── semi-starred.svg │ │ │ │ │ ├── smartphone-connected.svg │ │ │ │ │ ├── smartphone-disconnected.svg │ │ │ │ │ ├── smartphone-trusted.svg │ │ │ │ │ ├── starred.svg │ │ │ │ │ ├── state-download.svg │ │ │ │ │ ├── state-error.svg │ │ │ │ │ ├── state-information.svg │ │ │ │ │ ├── state-offline.svg │ │ │ │ │ ├── state-ok.svg │ │ │ │ │ ├── state-pause.svg │ │ │ │ │ ├── state-sync.svg │ │ │ │ │ ├── state-warning.svg │ │ │ │ │ ├── stock_dialog-error.svg │ │ │ │ │ ├── stock_dialog-info.svg │ │ │ │ │ ├── stock_dialog-question.svg │ │ │ │ │ ├── stock_dialog-warning.svg │ │ │ │ │ ├── tablet-connected.svg │ │ │ │ │ ├── tablet-disconnected.svg │ │ │ │ │ ├── tablet-trusted.svg │ │ │ │ │ ├── update-high.svg │ │ │ │ │ ├── update-low.svg │ │ │ │ │ ├── update-medium.svg │ │ │ │ │ ├── update-none.svg │ │ │ │ │ ├── user-available.svg │ │ │ │ │ ├── user-away-extended.svg │ │ │ │ │ ├── user-away.svg │ │ │ │ │ ├── user-busy.svg │ │ │ │ │ ├── user-extended-away.svg │ │ │ │ │ ├── user-idle.svg │ │ │ │ │ ├── user-invisible.svg │ │ │ │ │ ├── user-offline.svg │ │ │ │ │ ├── user-online.svg │ │ │ │ │ ├── xfce4-battery-caution-charging.svg │ │ │ │ │ ├── xfce4-battery-caution.svg │ │ │ │ │ ├── xfce4-battery-critical-charging.svg │ │ │ │ │ ├── xfce4-battery-critical.svg │ │ │ │ │ ├── xfce4-battery-full-charging.svg │ │ │ │ │ ├── xfce4-battery-full.svg │ │ │ │ │ ├── xfce4-battery-good-charging.svg │ │ │ │ │ ├── xfce4-battery-good.svg │ │ │ │ │ ├── xfce4-battery-low-charging.svg │ │ │ │ │ ├── xfce4-battery-low.svg │ │ │ │ │ ├── xfce4-battery-missing.svg │ │ │ │ │ ├── xfce4-battery-ok-charging.svg │ │ │ │ │ ├── xfce4-battery-ok.svg │ │ │ │ │ ├── xfce4-battery-plugin.svg │ │ │ │ │ ├── xfpm-battery-000-charging.svg │ │ │ │ │ ├── xfpm-battery-000.svg │ │ │ │ │ ├── xfpm-battery-020-charging.svg │ │ │ │ │ ├── xfpm-battery-020.svg │ │ │ │ │ ├── xfpm-battery-040-charging.svg │ │ │ │ │ ├── xfpm-battery-040.svg │ │ │ │ │ ├── xfpm-battery-060-charging.svg │ │ │ │ │ ├── xfpm-battery-060.svg │ │ │ │ │ ├── xfpm-battery-080-charging.svg │ │ │ │ │ ├── xfpm-battery-080.svg │ │ │ │ │ ├── xfpm-battery-100-charging.svg │ │ │ │ │ ├── xfpm-battery-100.svg │ │ │ │ │ ├── xfpm-battery-caution-charging.svg │ │ │ │ │ ├── xfpm-battery-caution.svg │ │ │ │ │ ├── xfpm-battery-charged.svg │ │ │ │ │ ├── xfpm-battery-critical-charging.svg │ │ │ │ │ ├── xfpm-battery-critical.svg │ │ │ │ │ ├── xfpm-battery-empty.svg │ │ │ │ │ ├── xfpm-battery-full-charging.svg │ │ │ │ │ ├── xfpm-battery-full.svg │ │ │ │ │ ├── xfpm-battery-good-charging.svg │ │ │ │ │ ├── xfpm-battery-good.svg │ │ │ │ │ ├── xfpm-battery-low-charging.svg │ │ │ │ │ ├── xfpm-battery-low.svg │ │ │ │ │ ├── xfpm-battery-missing.svg │ │ │ │ │ ├── xfpm-battery-ok-charging.svg │ │ │ │ │ ├── xfpm-battery-ok.svg │ │ │ │ │ ├── xfpm-primary-000-charging.svg │ │ │ │ │ ├── xfpm-primary-000.svg │ │ │ │ │ ├── xfpm-primary-020-charging.svg │ │ │ │ │ ├── xfpm-primary-020.svg │ │ │ │ │ ├── xfpm-primary-040-charging.svg │ │ │ │ │ ├── xfpm-primary-040.svg │ │ │ │ │ ├── xfpm-primary-060-charging.svg │ │ │ │ │ ├── xfpm-primary-060.svg │ │ │ │ │ ├── xfpm-primary-080-charging.svg │ │ │ │ │ ├── xfpm-primary-080.svg │ │ │ │ │ ├── xfpm-primary-100-charging.svg │ │ │ │ │ ├── xfpm-primary-100.svg │ │ │ │ │ ├── xfpm-primary-caution-charging.svg │ │ │ │ │ ├── xfpm-primary-caution.svg │ │ │ │ │ ├── xfpm-primary-charged.svg │ │ │ │ │ ├── xfpm-primary-critical-charging.svg │ │ │ │ │ ├── xfpm-primary-critical.svg │ │ │ │ │ ├── xfpm-primary-empty.svg │ │ │ │ │ ├── xfpm-primary-full-charging.svg │ │ │ │ │ ├── xfpm-primary-full.svg │ │ │ │ │ ├── xfpm-primary-good-charging.svg │ │ │ │ │ ├── xfpm-primary-good.svg │ │ │ │ │ ├── xfpm-primary-low-charging.svg │ │ │ │ │ ├── xfpm-primary-low.svg │ │ │ │ │ ├── xfpm-primary-missing.svg │ │ │ │ │ ├── xfpm-primary-ok-charging.svg │ │ │ │ │ └── xfpm-primary-ok.svg │ │ │ │ │ ├── symbolic │ │ │ │ │ ├── account-logged-in-symbolic.svg │ │ │ │ │ ├── airplane-mode-symbolic.svg │ │ │ │ │ ├── alarm-symbolic.svg │ │ │ │ │ ├── appointment-missed-symbolic.svg │ │ │ │ │ ├── appointment-soon-symbolic.svg │ │ │ │ │ ├── audio-input-microphone-high-symbolic.svg │ │ │ │ │ ├── audio-input-microphone-low-symbolic.svg │ │ │ │ │ ├── audio-input-microphone-medium-symbolic.svg │ │ │ │ │ ├── audio-input-microphone-muted-symbolic.svg │ │ │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ │ │ ├── avatar-default-symbolic.svg │ │ │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ │ │ ├── battery-caution-symbolic.svg │ │ │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ │ │ ├── battery-empty-symbolic.svg │ │ │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ │ │ ├── battery-full-symbolic.svg │ │ │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ │ │ ├── battery-good-symbolic.svg │ │ │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ │ │ ├── battery-low-symbolic.svg │ │ │ │ │ ├── battery-missing-symbolic.svg │ │ │ │ │ ├── bluetooth-active-symbolic.svg │ │ │ │ │ ├── bluetooth-disabled-symbolic.svg │ │ │ │ │ ├── call-missed-symbolic.svg │ │ │ │ │ ├── changes-allow-symbolic.svg │ │ │ │ │ ├── changes-prevent-symbolic.svg │ │ │ │ │ ├── channel-insecure-symbolic.svg │ │ │ │ │ ├── channel-secure-symbolic.svg │ │ │ │ │ ├── checkbox-checked-symbolic.svg │ │ │ │ │ ├── checkbox-mixed-symbolic.svg │ │ │ │ │ ├── checkbox-symbolic.svg │ │ │ │ │ ├── computer-fail-symbolic.svg │ │ │ │ │ ├── content-loading-symbolic.svg │ │ │ │ │ ├── dialog-error-symbolic.svg │ │ │ │ │ ├── dialog-information-symbolic.svg │ │ │ │ │ ├── dialog-password-symbolic.svg │ │ │ │ │ ├── dialog-question-symbolic.svg │ │ │ │ │ ├── dialog-warning-symbolic.svg │ │ │ │ │ ├── display-brightness-symbolic.svg │ │ │ │ │ ├── face-monkey-symbolic.svg │ │ │ │ │ ├── gtk-dialog-warning-symbolic.svg │ │ │ │ │ ├── image-loading-symbolic.svg │ │ │ │ │ ├── keyboard-brightness-symbolic.svg │ │ │ │ │ ├── mail-attachment-symbolic.svg │ │ │ │ │ ├── mail-read-symbolic.svg │ │ │ │ │ ├── mail-replied-symbolic.svg │ │ │ │ │ ├── mail-unread-symbolic.svg │ │ │ │ │ ├── microphone-sensitivity-high-symbolic.svg │ │ │ │ │ ├── microphone-sensitivity-low-symbolic.svg │ │ │ │ │ ├── microphone-sensitivity-medium-symbolic.svg │ │ │ │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ │ │ │ ├── my-caffeine-off-symbolic.svg │ │ │ │ │ ├── my-caffeine-on-symbolic.svg │ │ │ │ │ ├── mymail-symbolic.svg │ │ │ │ │ ├── network-cellular-3g-symbolic.svg │ │ │ │ │ ├── network-cellular-4g-symbolic.svg │ │ │ │ │ ├── network-cellular-acquiring-symbolic.svg │ │ │ │ │ ├── network-cellular-cdma-1x-symbolic.svg │ │ │ │ │ ├── network-cellular-connected-symbolic.svg │ │ │ │ │ ├── network-cellular-edge-symbolic.svg │ │ │ │ │ ├── network-cellular-gprs-symbolic.svg │ │ │ │ │ ├── network-cellular-hspa-symbolic.svg │ │ │ │ │ ├── network-cellular-no-route-symbolic.svg │ │ │ │ │ ├── network-cellular-offline-symbolic.svg │ │ │ │ │ ├── network-cellular-signal-excellent-symbolic.svg │ │ │ │ │ ├── network-cellular-signal-good-symbolic.svg │ │ │ │ │ ├── network-cellular-signal-none-symbolic.svg │ │ │ │ │ ├── network-cellular-signal-ok-symbolic.svg │ │ │ │ │ ├── network-cellular-signal-weak-symbolic.svg │ │ │ │ │ ├── network-cellular-umts-symbolic.svg │ │ │ │ │ ├── network-error-symbolic.svg │ │ │ │ │ ├── network-idle-symbolic.svg │ │ │ │ │ ├── network-offline-symbolic.svg │ │ │ │ │ ├── network-receive-symbolic.svg │ │ │ │ │ ├── network-transmit-receive-symbolic.svg │ │ │ │ │ ├── network-transmit-symbolic.svg │ │ │ │ │ ├── network-vpn-acquiring-symbolic.svg │ │ │ │ │ ├── network-vpn-symbolic.svg │ │ │ │ │ ├── network-wired-acquiring-symbolic.svg │ │ │ │ │ ├── network-wired-disconnected-symbolic.svg │ │ │ │ │ ├── network-wired-no-route-symbolic.svg │ │ │ │ │ ├── network-wired-offline-symbolic.svg │ │ │ │ │ ├── network-wired-symbolic.svg │ │ │ │ │ ├── network-wireless-acquiring-symbolic.svg │ │ │ │ │ ├── network-wireless-connected-symbolic.svg │ │ │ │ │ ├── network-wireless-encrypted-symbolic.svg │ │ │ │ │ ├── network-wireless-hotspot-symbolic.svg │ │ │ │ │ ├── network-wireless-no-route-symbolic.svg │ │ │ │ │ ├── network-wireless-offline-symbolic.svg │ │ │ │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ │ │ │ ├── network-wireless-signal-good-symbolic.svg │ │ │ │ │ ├── network-wireless-signal-none-symbolic.svg │ │ │ │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ │ │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ │ │ │ ├── night-light-symbolic.svg │ │ │ │ │ ├── nm-device-wired-secure.svg │ │ │ │ │ ├── nm-device-wired.svg │ │ │ │ │ ├── nm-no-connection.svg │ │ │ │ │ ├── nm-signal-0-secure.svg │ │ │ │ │ ├── nm-signal-0.svg │ │ │ │ │ ├── nm-signal-00-secure.svg │ │ │ │ │ ├── nm-signal-00.svg │ │ │ │ │ ├── nm-signal-100-secure.svg │ │ │ │ │ ├── nm-signal-100.svg │ │ │ │ │ ├── nm-signal-25-secure.svg │ │ │ │ │ ├── nm-signal-25.svg │ │ │ │ │ ├── nm-signal-50-secure.svg │ │ │ │ │ ├── nm-signal-50.svg │ │ │ │ │ ├── nm-signal-75-secure.svg │ │ │ │ │ ├── nm-signal-75.svg │ │ │ │ │ ├── nm-vpn-active-lock.svg │ │ │ │ │ ├── nm-vpn-lock.svg │ │ │ │ │ ├── non-starred-symbolic.svg │ │ │ │ │ ├── notification-disabled-symbolic.svg │ │ │ │ │ ├── notification-new-symbolic.svg │ │ │ │ │ ├── notification-symbolic.svg │ │ │ │ │ ├── notifications-disabled-symbolic.svg │ │ │ │ │ ├── notifications-new-symbolic.svg │ │ │ │ │ ├── notifications-symbolic.svg │ │ │ │ │ ├── pamac-tray-no-update.svg │ │ │ │ │ ├── pamac-tray-update.svg │ │ │ │ │ ├── printer-error-symbolic.svg │ │ │ │ │ ├── printer-printing-symbolic.svg │ │ │ │ │ ├── printer-warning-symbolic.svg │ │ │ │ │ ├── process-completed-symbolic.svg │ │ │ │ │ ├── process-error-symbolic.svg │ │ │ │ │ ├── process-working-symbolic.svg │ │ │ │ │ ├── radio-checked-symbolic.svg │ │ │ │ │ ├── radio-mixed-symbolic.svg │ │ │ │ │ ├── radio-symbolic.svg │ │ │ │ │ ├── rotation-allowed-symbolic.svg │ │ │ │ │ ├── rotation-locked-symbolic.svg │ │ │ │ │ ├── security-high-symbolic.svg │ │ │ │ │ ├── security-low-symbolic.svg │ │ │ │ │ ├── security-medium-symbolic.svg │ │ │ │ │ ├── semi-starred-rtl-symbolic.svg │ │ │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ │ │ ├── semi-starred-symbolic.svg │ │ │ │ │ ├── software-update-available-symbolic.svg │ │ │ │ │ ├── software-update-urgent-symbolic.svg │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ ├── task-due-symbolic.svg │ │ │ │ │ ├── task-past-due-symbolic.svg │ │ │ │ │ ├── touchpad-disabled-symbolic.svg │ │ │ │ │ ├── user-available-symbolic.svg │ │ │ │ │ ├── user-away-symbolic.svg │ │ │ │ │ ├── user-busy-symbolic.svg │ │ │ │ │ ├── user-idle-symbolic.svg │ │ │ │ │ ├── user-invisible-symbolic.svg │ │ │ │ │ ├── user-offline-symbolic.svg │ │ │ │ │ ├── user-status-pending-symbolic.svg │ │ │ │ │ ├── view-private-symbolic.svg │ │ │ │ │ ├── view-wrapped-rtl-symbolic.svg │ │ │ │ │ ├── view-wrapped-symbolic-rtl.svg │ │ │ │ │ ├── view-wrapped-symbolic.svg │ │ │ │ │ ├── weather-clear-night-symbolic.svg │ │ │ │ │ ├── weather-clear-symbolic.svg │ │ │ │ │ ├── weather-few-clouds-night-symbolic.svg │ │ │ │ │ ├── weather-few-clouds-symbolic.svg │ │ │ │ │ ├── weather-fog-symbolic.svg │ │ │ │ │ ├── weather-overcast-symbolic.svg │ │ │ │ │ ├── weather-severe-alert-symbolic.svg │ │ │ │ │ ├── weather-showers-scattered-symbolic.svg │ │ │ │ │ ├── weather-showers-symbolic.svg │ │ │ │ │ ├── weather-snow-symbolic.svg │ │ │ │ │ └── weather-storm-symbolic.svg │ │ │ │ │ └── symbolic@2x │ │ │ │ │ ├── account-logged-in-symbolic.svg │ │ │ │ │ ├── airplane-mode-symbolic.svg │ │ │ │ │ ├── alarm-symbolic.svg │ │ │ │ │ ├── appointment-missed-symbolic.svg │ │ │ │ │ ├── appointment-soon-symbolic.svg │ │ │ │ │ ├── audio-input-microphone-high-symbolic.svg │ │ │ │ │ ├── audio-input-microphone-low-symbolic.svg │ │ │ │ │ ├── audio-input-microphone-medium-symbolic.svg │ │ │ │ │ ├── audio-input-microphone-muted-symbolic.svg │ │ │ │ │ ├── audio-volume-high-symbolic.svg │ │ │ │ │ ├── audio-volume-low-symbolic.svg │ │ │ │ │ ├── audio-volume-medium-symbolic.svg │ │ │ │ │ ├── audio-volume-muted-symbolic.svg │ │ │ │ │ ├── avatar-default-symbolic.svg │ │ │ │ │ ├── battery-caution-charging-symbolic.svg │ │ │ │ │ ├── battery-caution-symbolic.svg │ │ │ │ │ ├── battery-empty-charging-symbolic.svg │ │ │ │ │ ├── battery-empty-symbolic.svg │ │ │ │ │ ├── battery-full-charged-symbolic.svg │ │ │ │ │ ├── battery-full-charging-symbolic.svg │ │ │ │ │ ├── battery-full-symbolic.svg │ │ │ │ │ ├── battery-good-charging-symbolic.svg │ │ │ │ │ ├── battery-good-symbolic.svg │ │ │ │ │ ├── battery-low-charging-symbolic.svg │ │ │ │ │ ├── battery-low-symbolic.svg │ │ │ │ │ ├── battery-missing-symbolic.svg │ │ │ │ │ ├── bluetooth-active-symbolic.svg │ │ │ │ │ ├── bluetooth-disabled-symbolic.svg │ │ │ │ │ ├── call-missed-symbolic.svg │ │ │ │ │ ├── changes-allow-symbolic.svg │ │ │ │ │ ├── changes-prevent-symbolic.svg │ │ │ │ │ ├── channel-insecure-symbolic.svg │ │ │ │ │ ├── channel-secure-symbolic.svg │ │ │ │ │ ├── checkbox-checked-symbolic.svg │ │ │ │ │ ├── checkbox-mixed-symbolic.svg │ │ │ │ │ ├── checkbox-symbolic.svg │ │ │ │ │ ├── computer-fail-symbolic.svg │ │ │ │ │ ├── content-loading-symbolic.svg │ │ │ │ │ ├── dialog-error-symbolic.svg │ │ │ │ │ ├── dialog-information-symbolic.svg │ │ │ │ │ ├── dialog-password-symbolic.svg │ │ │ │ │ ├── dialog-question-symbolic.svg │ │ │ │ │ ├── dialog-warning-symbolic.svg │ │ │ │ │ ├── display-brightness-symbolic.svg │ │ │ │ │ ├── face-monkey-symbolic.svg │ │ │ │ │ ├── gtk-dialog-warning-symbolic.svg │ │ │ │ │ ├── image-loading-symbolic.svg │ │ │ │ │ ├── keyboard-brightness-symbolic.svg │ │ │ │ │ ├── mail-attachment-symbolic.svg │ │ │ │ │ ├── mail-read-symbolic.svg │ │ │ │ │ ├── mail-replied-symbolic.svg │ │ │ │ │ ├── mail-unread-symbolic.svg │ │ │ │ │ ├── microphone-sensitivity-high-symbolic.svg │ │ │ │ │ ├── microphone-sensitivity-low-symbolic.svg │ │ │ │ │ ├── microphone-sensitivity-medium-symbolic.svg │ │ │ │ │ ├── microphone-sensitivity-muted-symbolic.svg │ │ │ │ │ ├── my-caffeine-off-symbolic.svg │ │ │ │ │ ├── my-caffeine-on-symbolic.svg │ │ │ │ │ ├── mymail-symbolic.svg │ │ │ │ │ ├── network-cellular-3g-symbolic.svg │ │ │ │ │ ├── network-cellular-4g-symbolic.svg │ │ │ │ │ ├── network-cellular-acquiring-symbolic.svg │ │ │ │ │ ├── network-cellular-cdma-1x-symbolic.svg │ │ │ │ │ ├── network-cellular-connected-symbolic.svg │ │ │ │ │ ├── network-cellular-edge-symbolic.svg │ │ │ │ │ ├── network-cellular-gprs-symbolic.svg │ │ │ │ │ ├── network-cellular-hspa-symbolic.svg │ │ │ │ │ ├── network-cellular-no-route-symbolic.svg │ │ │ │ │ ├── network-cellular-offline-symbolic.svg │ │ │ │ │ ├── network-cellular-signal-excellent-symbolic.svg │ │ │ │ │ ├── network-cellular-signal-good-symbolic.svg │ │ │ │ │ ├── network-cellular-signal-none-symbolic.svg │ │ │ │ │ ├── network-cellular-signal-ok-symbolic.svg │ │ │ │ │ ├── network-cellular-signal-weak-symbolic.svg │ │ │ │ │ ├── network-cellular-umts-symbolic.svg │ │ │ │ │ ├── network-error-symbolic.svg │ │ │ │ │ ├── network-idle-symbolic.svg │ │ │ │ │ ├── network-offline-symbolic.svg │ │ │ │ │ ├── network-receive-symbolic.svg │ │ │ │ │ ├── network-transmit-receive-symbolic.svg │ │ │ │ │ ├── network-transmit-symbolic.svg │ │ │ │ │ ├── network-vpn-acquiring-symbolic.svg │ │ │ │ │ ├── network-vpn-symbolic.svg │ │ │ │ │ ├── network-wired-acquiring-symbolic.svg │ │ │ │ │ ├── network-wired-disconnected-symbolic.svg │ │ │ │ │ ├── network-wired-no-route-symbolic.svg │ │ │ │ │ ├── network-wired-offline-symbolic.svg │ │ │ │ │ ├── network-wired-symbolic.svg │ │ │ │ │ ├── network-wireless-acquiring-symbolic.svg │ │ │ │ │ ├── network-wireless-connected-symbolic.svg │ │ │ │ │ ├── network-wireless-encrypted-symbolic.svg │ │ │ │ │ ├── network-wireless-hotspot-symbolic.svg │ │ │ │ │ ├── network-wireless-no-route-symbolic.svg │ │ │ │ │ ├── network-wireless-offline-symbolic.svg │ │ │ │ │ ├── network-wireless-signal-excellent-symbolic.svg │ │ │ │ │ ├── network-wireless-signal-good-symbolic.svg │ │ │ │ │ ├── network-wireless-signal-none-symbolic.svg │ │ │ │ │ ├── network-wireless-signal-ok-symbolic.svg │ │ │ │ │ ├── network-wireless-signal-weak-symbolic.svg │ │ │ │ │ ├── night-light-symbolic.svg │ │ │ │ │ ├── nm-device-wired-secure.svg │ │ │ │ │ ├── nm-device-wired.svg │ │ │ │ │ ├── nm-no-connection.svg │ │ │ │ │ ├── nm-signal-0-secure.svg │ │ │ │ │ ├── nm-signal-0.svg │ │ │ │ │ ├── nm-signal-00-secure.svg │ │ │ │ │ ├── nm-signal-00.svg │ │ │ │ │ ├── nm-signal-100-secure.svg │ │ │ │ │ ├── nm-signal-100.svg │ │ │ │ │ ├── nm-signal-25-secure.svg │ │ │ │ │ ├── nm-signal-25.svg │ │ │ │ │ ├── nm-signal-50-secure.svg │ │ │ │ │ ├── nm-signal-50.svg │ │ │ │ │ ├── nm-signal-75-secure.svg │ │ │ │ │ ├── nm-signal-75.svg │ │ │ │ │ ├── nm-vpn-active-lock.svg │ │ │ │ │ ├── nm-vpn-lock.svg │ │ │ │ │ ├── non-starred-symbolic.svg │ │ │ │ │ ├── notification-disabled-symbolic.svg │ │ │ │ │ ├── notification-new-symbolic.svg │ │ │ │ │ ├── notification-symbolic.svg │ │ │ │ │ ├── notifications-disabled-symbolic.svg │ │ │ │ │ ├── notifications-new-symbolic.svg │ │ │ │ │ ├── notifications-symbolic.svg │ │ │ │ │ ├── pamac-tray-no-update.svg │ │ │ │ │ ├── pamac-tray-update.svg │ │ │ │ │ ├── printer-error-symbolic.svg │ │ │ │ │ ├── printer-printing-symbolic.svg │ │ │ │ │ ├── printer-warning-symbolic.svg │ │ │ │ │ ├── process-completed-symbolic.svg │ │ │ │ │ ├── process-error-symbolic.svg │ │ │ │ │ ├── process-working-symbolic.svg │ │ │ │ │ ├── radio-checked-symbolic.svg │ │ │ │ │ ├── radio-mixed-symbolic.svg │ │ │ │ │ ├── radio-symbolic.svg │ │ │ │ │ ├── rotation-allowed-symbolic.svg │ │ │ │ │ ├── rotation-locked-symbolic.svg │ │ │ │ │ ├── security-high-symbolic.svg │ │ │ │ │ ├── security-low-symbolic.svg │ │ │ │ │ ├── security-medium-symbolic.svg │ │ │ │ │ ├── semi-starred-rtl-symbolic.svg │ │ │ │ │ ├── semi-starred-symbolic-rtl.svg │ │ │ │ │ ├── semi-starred-symbolic.svg │ │ │ │ │ ├── software-update-available-symbolic.svg │ │ │ │ │ ├── software-update-urgent-symbolic.svg │ │ │ │ │ ├── starred-symbolic.svg │ │ │ │ │ ├── system-shutdown-symbolic.svg │ │ │ │ │ ├── task-due-symbolic.svg │ │ │ │ │ ├── task-past-due-symbolic.svg │ │ │ │ │ ├── touchpad-disabled-symbolic.svg │ │ │ │ │ ├── user-available-symbolic.svg │ │ │ │ │ ├── user-away-symbolic.svg │ │ │ │ │ ├── user-busy-symbolic.svg │ │ │ │ │ ├── user-idle-symbolic.svg │ │ │ │ │ ├── user-invisible-symbolic.svg │ │ │ │ │ ├── user-offline-symbolic.svg │ │ │ │ │ ├── user-status-pending-symbolic.svg │ │ │ │ │ ├── view-private-symbolic.svg │ │ │ │ │ ├── view-wrapped-rtl-symbolic.svg │ │ │ │ │ ├── view-wrapped-symbolic-rtl.svg │ │ │ │ │ ├── view-wrapped-symbolic.svg │ │ │ │ │ ├── weather-clear-night-symbolic.svg │ │ │ │ │ ├── weather-clear-symbolic.svg │ │ │ │ │ ├── weather-few-clouds-night-symbolic.svg │ │ │ │ │ ├── weather-few-clouds-symbolic.svg │ │ │ │ │ ├── weather-fog-symbolic.svg │ │ │ │ │ ├── weather-overcast-symbolic.svg │ │ │ │ │ ├── weather-severe-alert-symbolic.svg │ │ │ │ │ ├── weather-showers-scattered-symbolic.svg │ │ │ │ │ ├── weather-showers-symbolic.svg │ │ │ │ │ ├── weather-snow-symbolic.svg │ │ │ │ │ └── weather-storm-symbolic.svg │ │ │ │ ├── mac_dark_theme.qrc │ │ │ │ ├── mac_light_theme.qrc │ │ │ │ ├── scenestyle.qrc │ │ │ │ ├── scenestyle │ │ │ │ ├── dark │ │ │ │ │ └── style.json │ │ │ │ └── light │ │ │ │ │ └── style.json │ │ │ │ ├── theme.qrc │ │ │ │ ├── win_dark_theme.qrc │ │ │ │ └── win_light_theme.qrc │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── svgfont │ │ │ ├── svgdef.cpp │ │ │ ├── svgdef.h │ │ │ ├── vsvgfont.cpp │ │ │ ├── vsvgfont.h │ │ │ ├── vsvgfont_p.h │ │ │ ├── vsvgfontdatabase.cpp │ │ │ ├── vsvgfontdatabase.h │ │ │ ├── vsvgfontengine.cpp │ │ │ ├── vsvgfontengine.h │ │ │ ├── vsvgfontengine_p.h │ │ │ ├── vsvgfontreader.cpp │ │ │ ├── vsvgfontreader.h │ │ │ ├── vsvgglyph.cpp │ │ │ ├── vsvgglyph.h │ │ │ ├── vsvgglyph_p.h │ │ │ ├── vsvghandler.cpp │ │ │ ├── vsvghandler.h │ │ │ ├── vsvgpathtokenizer.cpp │ │ │ └── vsvgpathtokenizer.h │ │ ├── testpath.cpp │ │ ├── testpath.h │ │ ├── testvapplication.h │ │ ├── theme │ │ │ ├── macutils.h │ │ │ ├── macutils.mm │ │ │ ├── themeDef.cpp │ │ │ ├── themeDef.h │ │ │ ├── vapplicationstyle.cpp │ │ │ ├── vapplicationstyle.h │ │ │ ├── vmanuallayoutstyle.cpp │ │ │ ├── vmanuallayoutstyle.h │ │ │ ├── vpatternpiecestyle.cpp │ │ │ ├── vpatternpiecestyle.h │ │ │ ├── vscenestylesheet.cpp │ │ │ ├── vscenestylesheet.h │ │ │ ├── vstylesheetstyle.cpp │ │ │ ├── vstylesheetstyle.h │ │ │ ├── vtheme.cpp │ │ │ ├── vtheme.h │ │ │ ├── vtoolstyle.cpp │ │ │ └── vtoolstyle.h │ │ ├── typedef.h │ │ ├── vabstractapplication.cpp │ │ ├── vabstractapplication.h │ │ ├── vabstractshortcutmanager.cpp │ │ ├── vabstractshortcutmanager.h │ │ ├── vabstractvalapplication.cpp │ │ ├── vabstractvalapplication.h │ │ ├── vcommonsettings.cpp │ │ ├── vcommonsettings.h │ │ ├── vfontinstaller.cpp │ │ ├── vfontinstaller.h │ │ ├── vlockguard.h │ │ ├── vmath.h │ │ ├── vmisc.qbs │ │ ├── vmodifierkey.cpp │ │ ├── vmodifierkey.h │ │ ├── vsysexits.h │ │ ├── vtablesearch.cpp │ │ ├── vtablesearch.h │ │ ├── vtextcodec.cpp │ │ ├── vtextcodec.h │ │ ├── vtextstream.cpp │ │ ├── vtextstream.h │ │ ├── vtextstream_p.h │ │ ├── vtranslator.cpp │ │ ├── vtranslator.h │ │ ├── vvalentinasettings.cpp │ │ └── vvalentinasettings.h │ ├── vobj │ │ ├── delaunay.cpp │ │ ├── delaunay.h │ │ ├── predicates.cpp │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── vobj.qbs │ │ ├── vobjengine.cpp │ │ ├── vobjengine.h │ │ ├── vobjpaintdevice.cpp │ │ └── vobjpaintdevice.h │ ├── vpatterndb │ │ ├── calculator.cpp │ │ ├── calculator.h │ │ ├── floatItemData │ │ │ ├── floatitemdef.h │ │ │ ├── vabstractfloatitemdata.cpp │ │ │ ├── vabstractfloatitemdata.h │ │ │ ├── vabstractfloatitemdata_p.h │ │ │ ├── vgrainlinedata.cpp │ │ │ ├── vgrainlinedata.h │ │ │ ├── vgrainlinedata_p.h │ │ │ ├── vpatternlabeldata.cpp │ │ │ ├── vpatternlabeldata.h │ │ │ ├── vpatternlabeldata_p.h │ │ │ ├── vpiecelabeldata.cpp │ │ │ ├── vpiecelabeldata.h │ │ │ └── vpiecelabeldata_p.h │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── testpassmark.cpp │ │ ├── testpassmark.h │ │ ├── variables │ │ │ ├── varcradius.cpp │ │ │ ├── varcradius.h │ │ │ ├── varcradius_p.h │ │ │ ├── vcurveangle.cpp │ │ │ ├── vcurveangle.h │ │ │ ├── vcurveclength.cpp │ │ │ ├── vcurveclength.h │ │ │ ├── vcurvelength.cpp │ │ │ ├── vcurvelength.h │ │ │ ├── vcurvevariable.cpp │ │ │ ├── vcurvevariable.h │ │ │ ├── vcurvevariable_p.h │ │ │ ├── vincrement.cpp │ │ │ ├── vincrement.h │ │ │ ├── vincrement_p.h │ │ │ ├── vinternalvariable.cpp │ │ │ ├── vinternalvariable.h │ │ │ ├── vinternalvariable_p.h │ │ │ ├── vlineangle.cpp │ │ │ ├── vlineangle.h │ │ │ ├── vlineangle_p.h │ │ │ ├── vlinelength.cpp │ │ │ ├── vlinelength.h │ │ │ ├── vlinelength_p.h │ │ │ ├── vmeasurement.cpp │ │ │ ├── vmeasurement.h │ │ │ ├── vmeasurement_p.h │ │ │ ├── vpiecearea.cpp │ │ │ ├── vpiecearea.h │ │ │ ├── vpiecearea_p.h │ │ │ ├── vvariable.cpp │ │ │ ├── vvariable.h │ │ │ └── vvariable_p.h │ │ ├── vcontainer.cpp │ │ ├── vcontainer.h │ │ ├── vformula.cpp │ │ ├── vformula.h │ │ ├── vformula_p.h │ │ ├── vnodedetail.cpp │ │ ├── vnodedetail.h │ │ ├── vnodedetail_p.h │ │ ├── vpassmark.cpp │ │ ├── vpassmark.h │ │ ├── vpatterndb.qbs │ │ ├── vpiece.cpp │ │ ├── vpiece.h │ │ ├── vpiece_p.h │ │ ├── vpiecenode.cpp │ │ ├── vpiecenode.h │ │ ├── vpiecenode_p.h │ │ ├── vpiecepath.cpp │ │ ├── vpiecepath.h │ │ ├── vpiecepath_p.h │ │ ├── vtranslatevars.cpp │ │ └── vtranslatevars.h │ ├── vpropertyexplorer │ │ ├── LICENSE.txt │ │ ├── checkablemessagebox.cpp │ │ ├── checkablemessagebox.h │ │ ├── plugins │ │ │ ├── Vector3d │ │ │ │ ├── vvector3dproperty.cpp │ │ │ │ └── vvector3dproperty.h │ │ │ ├── vboolproperty.cpp │ │ │ ├── vboolproperty.h │ │ │ ├── vcolorproperty.cpp │ │ │ ├── vcolorproperty.h │ │ │ ├── vcolorpropertyeditor.cpp │ │ │ ├── vcolorpropertyeditor.h │ │ │ ├── vemptyproperty.cpp │ │ │ ├── vemptyproperty.h │ │ │ ├── venumproperty.cpp │ │ │ ├── venumproperty.h │ │ │ ├── vfileproperty.cpp │ │ │ ├── vfileproperty.h │ │ │ ├── vfilepropertyeditor.cpp │ │ │ ├── vfilepropertyeditor.h │ │ │ ├── vlabelproperty.cpp │ │ │ ├── vlabelproperty.h │ │ │ ├── vlinecolorproperty.cpp │ │ │ ├── vlinecolorproperty.h │ │ │ ├── vlinetypeproperty.cpp │ │ │ ├── vlinetypeproperty.h │ │ │ ├── vnumberproperty.cpp │ │ │ ├── vnumberproperty.h │ │ │ ├── vobjectproperty.cpp │ │ │ ├── vobjectproperty.h │ │ │ ├── vpointfproperty.cpp │ │ │ ├── vpointfproperty.h │ │ │ ├── vshortcutproperty.cpp │ │ │ ├── vshortcutproperty.h │ │ │ ├── vshortcutpropertyeditor.cpp │ │ │ ├── vshortcutpropertyeditor.h │ │ │ ├── vstringproperty.cpp │ │ │ ├── vstringproperty.h │ │ │ ├── vtextproperty.cpp │ │ │ ├── vtextproperty.h │ │ │ ├── vwidgetproperty.cpp │ │ │ └── vwidgetproperty.h │ │ ├── qtcolorpicker.cpp │ │ ├── qtcolorpicker.h │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── vabstractpropertyfactory.h │ │ ├── vfileproperty_p.h │ │ ├── vproperties.h │ │ ├── vproperty.cpp │ │ ├── vproperty.h │ │ ├── vproperty_p.h │ │ ├── vpropertydef.cpp │ │ ├── vpropertydef.h │ │ ├── vpropertydelegate.cpp │ │ ├── vpropertydelegate.h │ │ ├── vpropertyexplorer.qbs │ │ ├── vpropertyexplorer_global.h │ │ ├── vpropertyfactorymanager.cpp │ │ ├── vpropertyfactorymanager.h │ │ ├── vpropertyfactorymanager_p.h │ │ ├── vpropertyformview.cpp │ │ ├── vpropertyformview.h │ │ ├── vpropertyformview_p.h │ │ ├── vpropertyformwidget.cpp │ │ ├── vpropertyformwidget.h │ │ ├── vpropertyformwidget_p.h │ │ ├── vpropertymodel.cpp │ │ ├── vpropertymodel.h │ │ ├── vpropertymodel_p.h │ │ ├── vpropertyset.cpp │ │ ├── vpropertyset.h │ │ ├── vpropertyset_p.h │ │ ├── vpropertytreeview.cpp │ │ ├── vpropertytreeview.h │ │ ├── vpropertytreeview_p.h │ │ ├── vserializedproperty.cpp │ │ ├── vserializedproperty.h │ │ ├── vstandardpropertyfactory.cpp │ │ ├── vstandardpropertyfactory.h │ │ └── vwidgetproperty_p.h │ ├── vtest │ │ ├── abstracttest.cpp │ │ ├── abstracttest.h │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── vtest.cpp │ │ ├── vtest.h │ │ └── vtest.qbs │ ├── vtools │ │ ├── dialogs │ │ │ ├── dialogtoolbox.cpp │ │ │ ├── dialogtoolbox.h │ │ │ ├── support │ │ │ │ ├── dialogeditlabel.cpp │ │ │ │ ├── dialogeditlabel.h │ │ │ │ ├── dialogeditlabel.ui │ │ │ │ ├── dialogeditwrongformula.cpp │ │ │ │ ├── dialogeditwrongformula.h │ │ │ │ ├── dialogeditwrongformula.ui │ │ │ │ ├── dialogundo.cpp │ │ │ │ ├── dialogundo.h │ │ │ │ └── dialogundo.ui │ │ │ ├── tooldialogs.h │ │ │ └── tools │ │ │ │ ├── dialogalongline.cpp │ │ │ │ ├── dialogalongline.h │ │ │ │ ├── dialogalongline.ui │ │ │ │ ├── dialogarc.cpp │ │ │ │ ├── dialogarc.h │ │ │ │ ├── dialogarc.ui │ │ │ │ ├── dialogarcwithlength.cpp │ │ │ │ ├── dialogarcwithlength.h │ │ │ │ ├── dialogarcwithlength.ui │ │ │ │ ├── dialogbisector.cpp │ │ │ │ ├── dialogbisector.h │ │ │ │ ├── dialogbisector.ui │ │ │ │ ├── dialogcubicbezier.cpp │ │ │ │ ├── dialogcubicbezier.h │ │ │ │ ├── dialogcubicbezier.ui │ │ │ │ ├── dialogcubicbezierpath.cpp │ │ │ │ ├── dialogcubicbezierpath.h │ │ │ │ ├── dialogcubicbezierpath.ui │ │ │ │ ├── dialogcurveintersectaxis.cpp │ │ │ │ ├── dialogcurveintersectaxis.h │ │ │ │ ├── dialogcurveintersectaxis.ui │ │ │ │ ├── dialogcutarc.cpp │ │ │ │ ├── dialogcutarc.h │ │ │ │ ├── dialogcutarc.ui │ │ │ │ ├── dialogcutspline.cpp │ │ │ │ ├── dialogcutspline.h │ │ │ │ ├── dialogcutspline.ui │ │ │ │ ├── dialogcutsplinepath.cpp │ │ │ │ ├── dialogcutsplinepath.h │ │ │ │ ├── dialogcutsplinepath.ui │ │ │ │ ├── dialogellipticalarc.cpp │ │ │ │ ├── dialogellipticalarc.h │ │ │ │ ├── dialogellipticalarc.ui │ │ │ │ ├── dialogellipticalarcwithlength.cpp │ │ │ │ ├── dialogellipticalarcwithlength.h │ │ │ │ ├── dialogellipticalarcwithlength.ui │ │ │ │ ├── dialogendline.cpp │ │ │ │ ├── dialogendline.h │ │ │ │ ├── dialogendline.ui │ │ │ │ ├── dialogflippingbyaxis.cpp │ │ │ │ ├── dialogflippingbyaxis.h │ │ │ │ ├── dialogflippingbyaxis.ui │ │ │ │ ├── dialogflippingbyline.cpp │ │ │ │ ├── dialogflippingbyline.h │ │ │ │ ├── dialogflippingbyline.ui │ │ │ │ ├── dialoggraduatedcurve.cpp │ │ │ │ ├── dialoggraduatedcurve.h │ │ │ │ ├── dialoggraduatedcurve.ui │ │ │ │ ├── dialoggroup.cpp │ │ │ │ ├── dialoggroup.h │ │ │ │ ├── dialoggroup.ui │ │ │ │ ├── dialogheight.cpp │ │ │ │ ├── dialogheight.h │ │ │ │ ├── dialogheight.ui │ │ │ │ ├── dialogline.cpp │ │ │ │ ├── dialogline.h │ │ │ │ ├── dialogline.ui │ │ │ │ ├── dialoglineintersect.cpp │ │ │ │ ├── dialoglineintersect.h │ │ │ │ ├── dialoglineintersect.ui │ │ │ │ ├── dialoglineintersectaxis.cpp │ │ │ │ ├── dialoglineintersectaxis.h │ │ │ │ ├── dialoglineintersectaxis.ui │ │ │ │ ├── dialogmove.cpp │ │ │ │ ├── dialogmove.h │ │ │ │ ├── dialogmove.ui │ │ │ │ ├── dialognormal.cpp │ │ │ │ ├── dialognormal.h │ │ │ │ ├── dialognormal.ui │ │ │ │ ├── dialogparallelcurve.cpp │ │ │ │ ├── dialogparallelcurve.h │ │ │ │ ├── dialogparallelcurve.ui │ │ │ │ ├── dialogpointfromarcandtangent.cpp │ │ │ │ ├── dialogpointfromarcandtangent.h │ │ │ │ ├── dialogpointfromarcandtangent.ui │ │ │ │ ├── dialogpointfromcircleandtangent.cpp │ │ │ │ ├── dialogpointfromcircleandtangent.h │ │ │ │ ├── dialogpointfromcircleandtangent.ui │ │ │ │ ├── dialogpointofcontact.cpp │ │ │ │ ├── dialogpointofcontact.h │ │ │ │ ├── dialogpointofcontact.ui │ │ │ │ ├── dialogpointofintersection.cpp │ │ │ │ ├── dialogpointofintersection.h │ │ │ │ ├── dialogpointofintersection.ui │ │ │ │ ├── dialogpointofintersectionarcs.cpp │ │ │ │ ├── dialogpointofintersectionarcs.h │ │ │ │ ├── dialogpointofintersectionarcs.ui │ │ │ │ ├── dialogpointofintersectioncircles.cpp │ │ │ │ ├── dialogpointofintersectioncircles.h │ │ │ │ ├── dialogpointofintersectioncircles.ui │ │ │ │ ├── dialogpointofintersectioncurves.cpp │ │ │ │ ├── dialogpointofintersectioncurves.h │ │ │ │ ├── dialogpointofintersectioncurves.ui │ │ │ │ ├── dialogrotation.cpp │ │ │ │ ├── dialogrotation.h │ │ │ │ ├── dialogrotation.ui │ │ │ │ ├── dialogshoulderpoint.cpp │ │ │ │ ├── dialogshoulderpoint.h │ │ │ │ ├── dialogshoulderpoint.ui │ │ │ │ ├── dialogsinglepoint.cpp │ │ │ │ ├── dialogsinglepoint.h │ │ │ │ ├── dialogsinglepoint.ui │ │ │ │ ├── dialogspline.cpp │ │ │ │ ├── dialogspline.h │ │ │ │ ├── dialogspline.ui │ │ │ │ ├── dialogsplinepath.cpp │ │ │ │ ├── dialogsplinepath.h │ │ │ │ ├── dialogsplinepath.ui │ │ │ │ ├── dialogtool.cpp │ │ │ │ ├── dialogtool.h │ │ │ │ ├── dialogtriangle.cpp │ │ │ │ ├── dialogtriangle.h │ │ │ │ ├── dialogtriangle.ui │ │ │ │ ├── dialogtruedarts.cpp │ │ │ │ ├── dialogtruedarts.h │ │ │ │ ├── dialogtruedarts.ui │ │ │ │ ├── dialoguniondetails.cpp │ │ │ │ ├── dialoguniondetails.h │ │ │ │ ├── dialoguniondetails.ui │ │ │ │ └── piece │ │ │ │ ├── dialogduplicatedetail.cpp │ │ │ │ ├── dialogduplicatedetail.h │ │ │ │ ├── dialogduplicatedetail.ui │ │ │ │ ├── dialoginsertnode.cpp │ │ │ │ ├── dialoginsertnode.h │ │ │ │ ├── dialoginsertnode.ui │ │ │ │ ├── dialogpatternmaterials.cpp │ │ │ │ ├── dialogpatternmaterials.h │ │ │ │ ├── dialogpatternmaterials.ui │ │ │ │ ├── dialogpiecepath.cpp │ │ │ │ ├── dialogpiecepath.h │ │ │ │ ├── dialogpiecepath.ui │ │ │ │ ├── dialogpin.cpp │ │ │ │ ├── dialogpin.h │ │ │ │ ├── dialogpin.ui │ │ │ │ ├── dialogplacelabel.cpp │ │ │ │ ├── dialogplacelabel.h │ │ │ │ ├── dialogplacelabel.ui │ │ │ │ ├── dialogseamallowance.cpp │ │ │ │ ├── dialogseamallowance.h │ │ │ │ ├── dialogseamallowance.ui │ │ │ │ └── tabs │ │ │ │ ├── tabfoldline.ui │ │ │ │ ├── tabgrainline.ui │ │ │ │ ├── tablabels.ui │ │ │ │ ├── tabpassmarks.ui │ │ │ │ ├── tabpaths.ui │ │ │ │ ├── tabpins.ui │ │ │ │ └── tabplacelabels.ui │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── tools │ │ │ ├── backgroundimage │ │ │ │ ├── vbackgroundimagecontrols.cpp │ │ │ │ ├── vbackgroundimagecontrols.h │ │ │ │ ├── vbackgroundimageitem.cpp │ │ │ │ ├── vbackgroundimageitem.h │ │ │ │ ├── vbackgroundpixmapitem.cpp │ │ │ │ ├── vbackgroundpixmapitem.h │ │ │ │ ├── vbackgroundsvgitem.cpp │ │ │ │ └── vbackgroundsvgitem.h │ │ │ ├── drawTools │ │ │ │ ├── operation │ │ │ │ │ ├── flipping │ │ │ │ │ │ ├── vabstractflipping.cpp │ │ │ │ │ │ ├── vabstractflipping.h │ │ │ │ │ │ ├── vtoolflippingbyaxis.cpp │ │ │ │ │ │ ├── vtoolflippingbyaxis.h │ │ │ │ │ │ ├── vtoolflippingbyline.cpp │ │ │ │ │ │ └── vtoolflippingbyline.h │ │ │ │ │ ├── vabstractoperation.cpp │ │ │ │ │ ├── vabstractoperation.h │ │ │ │ │ ├── vtoolmove.cpp │ │ │ │ │ ├── vtoolmove.h │ │ │ │ │ ├── vtoolrotation.cpp │ │ │ │ │ └── vtoolrotation.h │ │ │ │ ├── toolcurve │ │ │ │ │ ├── vabstractspline.cpp │ │ │ │ │ ├── vabstractspline.h │ │ │ │ │ ├── vtoolarc.cpp │ │ │ │ │ ├── vtoolarc.h │ │ │ │ │ ├── vtoolarcwithlength.cpp │ │ │ │ │ ├── vtoolarcwithlength.h │ │ │ │ │ ├── vtoolcubicbezier.cpp │ │ │ │ │ ├── vtoolcubicbezier.h │ │ │ │ │ ├── vtoolcubicbezierpath.cpp │ │ │ │ │ ├── vtoolcubicbezierpath.h │ │ │ │ │ ├── vtoolellipticalarc.cpp │ │ │ │ │ ├── vtoolellipticalarc.h │ │ │ │ │ ├── vtoolellipticalarcwithlength.cpp │ │ │ │ │ ├── vtoolellipticalarcwithlength.h │ │ │ │ │ ├── vtoolgraduatedcurve.cpp │ │ │ │ │ ├── vtoolgraduatedcurve.h │ │ │ │ │ ├── vtoolparallelcurve.cpp │ │ │ │ │ ├── vtoolparallelcurve.h │ │ │ │ │ ├── vtoolspline.cpp │ │ │ │ │ ├── vtoolspline.h │ │ │ │ │ ├── vtoolsplinepath.cpp │ │ │ │ │ └── vtoolsplinepath.h │ │ │ │ ├── toolpoint │ │ │ │ │ ├── tooldoublepoint │ │ │ │ │ │ ├── vtooldoublepoint.cpp │ │ │ │ │ │ ├── vtooldoublepoint.h │ │ │ │ │ │ ├── vtooltruedarts.cpp │ │ │ │ │ │ └── vtooltruedarts.h │ │ │ │ │ ├── toolsinglepoint │ │ │ │ │ │ ├── toolcut │ │ │ │ │ │ │ ├── vtoolcut.cpp │ │ │ │ │ │ │ ├── vtoolcut.h │ │ │ │ │ │ │ ├── vtoolcutarc.cpp │ │ │ │ │ │ │ ├── vtoolcutarc.h │ │ │ │ │ │ │ ├── vtoolcutspline.cpp │ │ │ │ │ │ │ ├── vtoolcutspline.h │ │ │ │ │ │ │ ├── vtoolcutsplinepath.cpp │ │ │ │ │ │ │ └── vtoolcutsplinepath.h │ │ │ │ │ │ ├── toollinepoint │ │ │ │ │ │ │ ├── vtoolalongline.cpp │ │ │ │ │ │ │ ├── vtoolalongline.h │ │ │ │ │ │ │ ├── vtoolbisector.cpp │ │ │ │ │ │ │ ├── vtoolbisector.h │ │ │ │ │ │ │ ├── vtoolcurveintersectaxis.cpp │ │ │ │ │ │ │ ├── vtoolcurveintersectaxis.h │ │ │ │ │ │ │ ├── vtoolendline.cpp │ │ │ │ │ │ │ ├── vtoolendline.h │ │ │ │ │ │ │ ├── vtoolheight.cpp │ │ │ │ │ │ │ ├── vtoolheight.h │ │ │ │ │ │ │ ├── vtoollineintersectaxis.cpp │ │ │ │ │ │ │ ├── vtoollineintersectaxis.h │ │ │ │ │ │ │ ├── vtoollinepoint.cpp │ │ │ │ │ │ │ ├── vtoollinepoint.h │ │ │ │ │ │ │ ├── vtoolnormal.cpp │ │ │ │ │ │ │ ├── vtoolnormal.h │ │ │ │ │ │ │ ├── vtoolshoulderpoint.cpp │ │ │ │ │ │ │ └── vtoolshoulderpoint.h │ │ │ │ │ │ ├── vtoolbasepoint.cpp │ │ │ │ │ │ ├── vtoolbasepoint.h │ │ │ │ │ │ ├── vtoollineintersect.cpp │ │ │ │ │ │ ├── vtoollineintersect.h │ │ │ │ │ │ ├── vtoolpointfromarcandtangent.cpp │ │ │ │ │ │ ├── vtoolpointfromarcandtangent.h │ │ │ │ │ │ ├── vtoolpointfromcircleandtangent.cpp │ │ │ │ │ │ ├── vtoolpointfromcircleandtangent.h │ │ │ │ │ │ ├── vtoolpointofcontact.cpp │ │ │ │ │ │ ├── vtoolpointofcontact.h │ │ │ │ │ │ ├── vtoolpointofintersection.cpp │ │ │ │ │ │ ├── vtoolpointofintersection.h │ │ │ │ │ │ ├── vtoolpointofintersectionarcs.cpp │ │ │ │ │ │ ├── vtoolpointofintersectionarcs.h │ │ │ │ │ │ ├── vtoolpointofintersectioncircles.cpp │ │ │ │ │ │ ├── vtoolpointofintersectioncircles.h │ │ │ │ │ │ ├── vtoolpointofintersectioncurves.cpp │ │ │ │ │ │ ├── vtoolpointofintersectioncurves.h │ │ │ │ │ │ ├── vtoolsinglepoint.cpp │ │ │ │ │ │ ├── vtoolsinglepoint.h │ │ │ │ │ │ ├── vtooltriangle.cpp │ │ │ │ │ │ └── vtooltriangle.h │ │ │ │ │ ├── vabstractpoint.cpp │ │ │ │ │ └── vabstractpoint.h │ │ │ │ ├── vdrawtool.cpp │ │ │ │ ├── vdrawtool.h │ │ │ │ ├── vtoolline.cpp │ │ │ │ └── vtoolline.h │ │ │ ├── nodeDetails │ │ │ │ ├── vabstractnode.cpp │ │ │ │ ├── vabstractnode.h │ │ │ │ ├── vnodearc.cpp │ │ │ │ ├── vnodearc.h │ │ │ │ ├── vnodeellipticalarc.cpp │ │ │ │ ├── vnodeellipticalarc.h │ │ │ │ ├── vnodepoint.cpp │ │ │ │ ├── vnodepoint.h │ │ │ │ ├── vnodespline.cpp │ │ │ │ ├── vnodespline.h │ │ │ │ ├── vnodesplinepath.cpp │ │ │ │ ├── vnodesplinepath.h │ │ │ │ ├── vtoolpiecepath.cpp │ │ │ │ ├── vtoolpiecepath.h │ │ │ │ ├── vtoolpin.cpp │ │ │ │ ├── vtoolpin.h │ │ │ │ ├── vtoolplacelabel.cpp │ │ │ │ └── vtoolplacelabel.h │ │ │ ├── toolsdef.cpp │ │ │ ├── toolsdef.h │ │ │ ├── vabstracttool.cpp │ │ │ ├── vabstracttool.h │ │ │ ├── vdatatool.cpp │ │ │ ├── vdatatool.h │ │ │ ├── vinteractivetool.cpp │ │ │ ├── vinteractivetool.h │ │ │ ├── vtoolseamallowance.cpp │ │ │ ├── vtoolseamallowance.h │ │ │ ├── vtooluniondetails.cpp │ │ │ └── vtooluniondetails.h │ │ ├── undocommands │ │ │ ├── addpatternpiece.cpp │ │ │ ├── addpatternpiece.h │ │ │ ├── addpiece.cpp │ │ │ ├── addpiece.h │ │ │ ├── addtocalc.cpp │ │ │ ├── addtocalc.h │ │ │ ├── deletepatternpiece.cpp │ │ │ ├── deletepatternpiece.h │ │ │ ├── deletepiece.cpp │ │ │ ├── deletepiece.h │ │ │ ├── deltool.cpp │ │ │ ├── deltool.h │ │ │ ├── image │ │ │ │ ├── addbackgroundimage.cpp │ │ │ │ ├── addbackgroundimage.h │ │ │ │ ├── deletebackgroundimage.cpp │ │ │ │ ├── deletebackgroundimage.h │ │ │ │ ├── hideallbackgroundimages.cpp │ │ │ │ ├── hideallbackgroundimages.h │ │ │ │ ├── hidebackgroundimage.cpp │ │ │ │ ├── hidebackgroundimage.h │ │ │ │ ├── holdallbackgroundimages.cpp │ │ │ │ ├── holdallbackgroundimages.h │ │ │ │ ├── holdbackgroundimage.cpp │ │ │ │ ├── holdbackgroundimage.h │ │ │ │ ├── movebackgroundimage.cpp │ │ │ │ ├── movebackgroundimage.h │ │ │ │ ├── opaquebackgroundimage.cpp │ │ │ │ ├── opaquebackgroundimage.h │ │ │ │ ├── renamebackgroundimage.cpp │ │ │ │ ├── renamebackgroundimage.h │ │ │ │ ├── resetbackgroundimage.cpp │ │ │ │ ├── resetbackgroundimage.h │ │ │ │ ├── rotatebackgroundimage.cpp │ │ │ │ ├── rotatebackgroundimage.h │ │ │ │ ├── scalebackgroundimage.cpp │ │ │ │ ├── scalebackgroundimage.h │ │ │ │ ├── zvaluemovebackgroundimage.cpp │ │ │ │ └── zvaluemovebackgroundimage.h │ │ │ ├── label │ │ │ │ ├── moveabstractlabel.cpp │ │ │ │ ├── moveabstractlabel.h │ │ │ │ ├── movedoublelabel.cpp │ │ │ │ ├── movedoublelabel.h │ │ │ │ ├── movelabel.cpp │ │ │ │ ├── movelabel.h │ │ │ │ ├── operationmovelabel.cpp │ │ │ │ ├── operationmovelabel.h │ │ │ │ ├── operationshowlabel.cpp │ │ │ │ ├── operationshowlabel.h │ │ │ │ ├── showdoublelabel.cpp │ │ │ │ ├── showdoublelabel.h │ │ │ │ ├── showlabel.cpp │ │ │ │ └── showlabel.h │ │ │ ├── movepiece.cpp │ │ │ ├── movepiece.h │ │ │ ├── movespline.cpp │ │ │ ├── movespline.h │ │ │ ├── movesplinepath.cpp │ │ │ ├── movesplinepath.h │ │ │ ├── movespoint.cpp │ │ │ ├── movespoint.h │ │ │ ├── renamepiece.cpp │ │ │ ├── renamepiece.h │ │ │ ├── renamepp.cpp │ │ │ ├── renamepp.h │ │ │ ├── savepieceoptions.cpp │ │ │ ├── savepieceoptions.h │ │ │ ├── savepiecepathoptions.cpp │ │ │ ├── savepiecepathoptions.h │ │ │ ├── saveplacelabeloptions.cpp │ │ │ ├── saveplacelabeloptions.h │ │ │ ├── savetooloptions.cpp │ │ │ ├── savetooloptions.h │ │ │ ├── togglepiecestate.cpp │ │ │ ├── togglepiecestate.h │ │ │ ├── undogroup.cpp │ │ │ ├── undogroup.h │ │ │ ├── vundocommand.cpp │ │ │ └── vundocommand.h │ │ ├── visualization │ │ │ ├── line │ │ │ │ ├── operation │ │ │ │ │ ├── visoperation.cpp │ │ │ │ │ ├── visoperation.h │ │ │ │ │ ├── vistoolflippingbyaxis.cpp │ │ │ │ │ ├── vistoolflippingbyaxis.h │ │ │ │ │ ├── vistoolflippingbyline.cpp │ │ │ │ │ ├── vistoolflippingbyline.h │ │ │ │ │ ├── vistoolmove.cpp │ │ │ │ │ ├── vistoolmove.h │ │ │ │ │ ├── vistoolrotation.cpp │ │ │ │ │ └── vistoolrotation.h │ │ │ │ ├── visline.cpp │ │ │ │ ├── visline.h │ │ │ │ ├── vistoolalongline.cpp │ │ │ │ ├── vistoolalongline.h │ │ │ │ ├── vistoolbisector.cpp │ │ │ │ ├── vistoolbisector.h │ │ │ │ ├── vistoolcurveintersectaxis.cpp │ │ │ │ ├── vistoolcurveintersectaxis.h │ │ │ │ ├── vistoolendline.cpp │ │ │ │ ├── vistoolendline.h │ │ │ │ ├── vistoolheight.cpp │ │ │ │ ├── vistoolheight.h │ │ │ │ ├── vistoolline.cpp │ │ │ │ ├── vistoolline.h │ │ │ │ ├── vistoollineintersect.cpp │ │ │ │ ├── vistoollineintersect.h │ │ │ │ ├── vistoollineintersectaxis.cpp │ │ │ │ ├── vistoollineintersectaxis.h │ │ │ │ ├── vistoolnormal.cpp │ │ │ │ ├── vistoolnormal.h │ │ │ │ ├── vistoolpointfromarcandtangent.cpp │ │ │ │ ├── vistoolpointfromarcandtangent.h │ │ │ │ ├── vistoolpointfromcircleandtangent.cpp │ │ │ │ ├── vistoolpointfromcircleandtangent.h │ │ │ │ ├── vistoolpointofcontact.cpp │ │ │ │ ├── vistoolpointofcontact.h │ │ │ │ ├── vistoolpointofintersection.cpp │ │ │ │ ├── vistoolpointofintersection.h │ │ │ │ ├── vistoolpointofintersectionarcs.cpp │ │ │ │ ├── vistoolpointofintersectionarcs.h │ │ │ │ ├── vistoolpointofintersectioncircles.cpp │ │ │ │ ├── vistoolpointofintersectioncircles.h │ │ │ │ ├── vistoolshoulderpoint.cpp │ │ │ │ ├── vistoolshoulderpoint.h │ │ │ │ ├── vistoolspecialpoint.cpp │ │ │ │ ├── vistoolspecialpoint.h │ │ │ │ ├── vistooltriangle.cpp │ │ │ │ ├── vistooltriangle.h │ │ │ │ ├── vistooltruedarts.cpp │ │ │ │ └── vistooltruedarts.h │ │ │ ├── path │ │ │ │ ├── vispath.cpp │ │ │ │ ├── vispath.h │ │ │ │ ├── vispiecespecialpoints.cpp │ │ │ │ ├── vispiecespecialpoints.h │ │ │ │ ├── vistoolarc.cpp │ │ │ │ ├── vistoolarc.h │ │ │ │ ├── vistoolarcwithlength.cpp │ │ │ │ ├── vistoolarcwithlength.h │ │ │ │ ├── vistoolcubicbezier.cpp │ │ │ │ ├── vistoolcubicbezier.h │ │ │ │ ├── vistoolcubicbezierpath.cpp │ │ │ │ ├── vistoolcubicbezierpath.h │ │ │ │ ├── vistoolcutarc.cpp │ │ │ │ ├── vistoolcutarc.h │ │ │ │ ├── vistoolcutspline.cpp │ │ │ │ ├── vistoolcutspline.h │ │ │ │ ├── vistoolcutsplinepath.cpp │ │ │ │ ├── vistoolcutsplinepath.h │ │ │ │ ├── vistoolduplicatedetail.cpp │ │ │ │ ├── vistoolduplicatedetail.h │ │ │ │ ├── vistoolellipticalarc.cpp │ │ │ │ ├── vistoolellipticalarc.h │ │ │ │ ├── vistoolellipticalarcwithlength.cpp │ │ │ │ ├── vistoolellipticalarcwithlength.h │ │ │ │ ├── vistoolgraduatedcurve.cpp │ │ │ │ ├── vistoolgraduatedcurve.h │ │ │ │ ├── vistoolparallelcurve.cpp │ │ │ │ ├── vistoolparallelcurve.h │ │ │ │ ├── vistoolpiece.cpp │ │ │ │ ├── vistoolpiece.h │ │ │ │ ├── vistoolpiecepath.cpp │ │ │ │ ├── vistoolpiecepath.h │ │ │ │ ├── vistoolpointofintersectioncurves.cpp │ │ │ │ ├── vistoolpointofintersectioncurves.h │ │ │ │ ├── vistoolspline.cpp │ │ │ │ ├── vistoolspline.h │ │ │ │ ├── vistoolsplinepath.cpp │ │ │ │ └── vistoolsplinepath.h │ │ │ ├── visualization.cpp │ │ │ └── visualization.h │ │ └── vtools.qbs │ └── vwidgets │ │ ├── fancytabbar │ │ ├── fancytab.cpp │ │ ├── fancytab.h │ │ ├── fancytabbar.cpp │ │ ├── fancytabbar.h │ │ ├── stylehelper.cpp │ │ └── stylehelper.h │ │ ├── global.cpp │ │ ├── global.h │ │ ├── scalesceneitems.cpp │ │ ├── scalesceneitems.h │ │ ├── stable.cpp │ │ ├── stable.h │ │ ├── vabstractmainwindow.cpp │ │ ├── vabstractmainwindow.h │ │ ├── vabstractsimple.cpp │ │ ├── vabstractsimple.h │ │ ├── vaspectratiopixmaplabel.cpp │ │ ├── vaspectratiopixmaplabel.h │ │ ├── vcomboboxdelegate.cpp │ │ ├── vcomboboxdelegate.h │ │ ├── vcontrolpointspline.cpp │ │ ├── vcontrolpointspline.h │ │ ├── vcurvepathitem.cpp │ │ ├── vcurvepathitem.h │ │ ├── vdecorationaligningdelegate.cpp │ │ ├── vdecorationaligningdelegate.h │ │ ├── velidedlabel.cpp │ │ ├── velidedlabel.h │ │ ├── vgrainlineitem.cpp │ │ ├── vgrainlineitem.h │ │ ├── vgraphicssimpletextitem.cpp │ │ ├── vgraphicssimpletextitem.h │ │ ├── vhighlighter.cpp │ │ ├── vhighlighter.h │ │ ├── vlineedit.cpp │ │ ├── vlineedit.h │ │ ├── vmaingraphicsscene.cpp │ │ ├── vmaingraphicsscene.h │ │ ├── vmaingraphicsview.cpp │ │ ├── vmaingraphicsview.h │ │ ├── vmousewheelwidgetadjustmentguard.cpp │ │ ├── vmousewheelwidgetadjustmentguard.h │ │ ├── vnobrushscalepathitem.cpp │ │ ├── vnobrushscalepathitem.h │ │ ├── vpiecegrainline.cpp │ │ ├── vpiecegrainline.h │ │ ├── vpiecegrainline_p.h │ │ ├── vpieceitem.cpp │ │ ├── vpieceitem.h │ │ ├── vplaintextedit.cpp │ │ ├── vplaintextedit.h │ │ ├── vscenepoint.cpp │ │ ├── vscenepoint.h │ │ ├── vsimplecurve.cpp │ │ ├── vsimplecurve.h │ │ ├── vsimplepoint.cpp │ │ ├── vsimplepoint.h │ │ ├── vsponsorcredits.cpp │ │ ├── vsponsorcredits.h │ │ ├── vtextgraphicsitem.cpp │ │ ├── vtextgraphicsitem.h │ │ ├── vtoolbuttonpopup.cpp │ │ ├── vtoolbuttonpopup.h │ │ ├── vwidgetpopup.cpp │ │ ├── vwidgetpopup.h │ │ └── vwidgets.qbs ├── src.qbs └── test │ ├── CollectionTest │ ├── CollectionTest.qbs │ ├── qttestmainlambda.cpp │ ├── stable.cpp │ ├── stable.h │ ├── tst_tape │ │ ├── GOST_man_ru_v0.3.0.vst │ │ ├── GOST_man_ru_v0.4.2.vst │ │ ├── all_measurements_v0.3.0.vit │ │ ├── all_measurements_v0.3.3.vit │ │ ├── all_measurements_v0.4.0.vst │ │ ├── all_measurements_v0.4.2.vst │ │ ├── broken1.vit │ │ ├── broken2.vit │ │ ├── broken3.vit │ │ ├── broken4.vit │ │ ├── empty.vit │ │ ├── keiko.vit │ │ ├── text.vit │ │ └── text.vst │ ├── tst_tapecommandline.cpp │ ├── tst_tapecommandline.h │ ├── tst_valentina │ │ ├── empty.val │ │ ├── issue_256.val │ │ ├── issue_256_correct.vit │ │ ├── issue_256_correct.vst │ │ ├── issue_256_wrong.vit │ │ ├── issue_256_wrong.vst │ │ ├── issue_256_wrong_path.val │ │ ├── issue_372.val │ │ ├── test_pedantic.val │ │ ├── text.val │ │ ├── wrong_formula.val │ │ └── wrong_obj_type.val │ ├── tst_valentinacommandline.cpp │ └── tst_valentinacommandline.h │ ├── ParserTest │ ├── ParserTest.qbs │ ├── main.cpp │ ├── stable.cpp │ └── stable.h │ ├── TranslationsTest │ ├── TranslationsTest.qbs │ ├── qttestmainlambda.cpp │ ├── stable.cpp │ ├── stable.h │ ├── tst_abstractregexp.cpp │ ├── tst_abstractregexp.h │ ├── tst_abstracttranslation.cpp │ ├── tst_abstracttranslation.h │ ├── tst_buitinregexp.cpp │ ├── tst_buitinregexp.h │ ├── tst_qmuparsererrormsg.cpp │ ├── tst_qmuparsererrormsg.h │ ├── tst_tslocaletranslation.cpp │ ├── tst_tslocaletranslation.h │ ├── tst_tstranslation.cpp │ └── tst_tstranslation.h │ ├── ValentinaTest │ ├── ValentinaTest.qbs │ ├── codecs │ │ ├── QT4-crashtest.txt │ │ ├── echo │ │ │ ├── echo_helper.qbs │ │ │ └── main.cpp │ │ ├── helper.qbs │ │ ├── korean.txt │ │ └── utf8.txt │ ├── qttestmainlambda.cpp │ ├── share │ │ ├── 160-42_intersection │ │ │ ├── intersections.json │ │ │ └── points.json │ │ ├── 25L_Knitting_Bag │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── DP_6 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── DP_6_hem_by_first_edge_right_angle │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── DP_6_hem_by_first_edge_symmetry │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── DP_6_hem_by_intersection │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── DP_6_hem_by_length │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── DP_6_hem_by_second_edge_right_angle │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── DP_6_hem_by_second_edge_symmetry │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_298_case1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_298_case2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_548 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_548_case1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_548_case2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_548_case3 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_604 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_620 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_627 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_642 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_646 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_687 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_767_Fabric_SkinFusing_TopCollar_Notch │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_767_Fabric_TopCollar │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_880_Detail │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_880_Detail_1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_883_ledge │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_883_prong │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test1_1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test2_2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test3 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test3_3 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test4 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test4_4 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test5 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test5_5 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test6 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test6_6 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test7_1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test7_2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_923_test7_3 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_924_Test_1 │ │ │ ├── passmarkData.json │ │ │ ├── passmarkShape.json │ │ │ ├── rotatedSeamAllowance.json │ │ │ └── seamAllowance.json │ │ ├── Issue_924_Test_2 │ │ │ ├── passmarkData.json │ │ │ ├── passmarkShape.json │ │ │ ├── rotatedSeamAllowance.json │ │ │ └── seamAllowance.json │ │ ├── Issue_937_case_1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_937_case_1a │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_937_case_2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_937_case_3 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_937_case_4 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── Issue_937_case_5 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── busty │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── capa_over │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── custom_seam_allwance_exclude_p1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── custom_seam_allwance_exclude_p2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_allowance_path_blazer_for_women_with_one_button_case_1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_allowance_path_blazer_for_women_with_one_button_case_2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_allowance_path_blazer_for_women_with_one_button_case_3 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_allowance_path_blazer_for_women_with_one_button_case_4 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_allowance_path_case_1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_allowance_path_case_2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_allowance_path_case_3 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_allowance_path_case_4 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_allowance_path_case_5 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_path_blazer_for_women_with_one_button_case_1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_path_blazer_for_women_with_one_button_case_2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_path_blazer_for_women_with_one_button_case_3 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_path_blazer_for_women_with_one_button_case_4 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_path_case_1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_path_case_2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_path_case_3 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_path_case_4 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── full_seam_path_case_5 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── hat │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── hood_1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── hood_2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── incorrect_notch │ │ │ ├── passmarkData.json │ │ │ ├── passmarkShape.json │ │ │ ├── rotatedSeamAllowance.json │ │ │ └── seamAllowance.json │ │ ├── jacketv8 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── loop_by_intersection │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── loop_start_point_on_line │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── mirror_notch_case1 │ │ │ ├── boundary.json │ │ │ ├── passmarks.json │ │ │ └── points.json │ │ ├── mirror_notch_case2 │ │ │ ├── boundary.json │ │ │ ├── passmarks.json │ │ │ └── points.json │ │ ├── notch │ │ │ ├── boundary.json │ │ │ ├── passmarks.json │ │ │ └── points.json │ │ ├── panties_case1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── panties_case2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── prong │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── prong_acute_angle │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── seamtest1_by_angle │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── seamtest1_by_angle_2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── seamtest1_by_first_edge_symmetry │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── seamtest1_by_first_right_angle │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── seamtest1_by_intersection │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── seamtest1_by_second_edge_symmetry │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── seamtest1_by_second_right_angle │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── seamtest2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── seamtest3 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── shirtv2_seam_allowance_line │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── shirtv2_seam_line │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#112 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#113 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#118 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#120_piece_1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#120_piece_2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#133 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#145 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#184_case1 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#184_case2 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#36 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#58 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── smart_pattern_#99 │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── svg_font_writing_system │ │ │ ├── simplified_chinese_writing_system.json │ │ │ └── traditional_chinese_writing_system.json │ │ ├── test_data.qrc │ │ ├── trousers_block │ │ │ ├── input.json │ │ │ └── output.json │ │ ├── true_zero_width_notches │ │ │ ├── passmarkData.json │ │ │ ├── passmarkShape.json │ │ │ ├── rotatedSeamAllowance.json │ │ │ └── seamAllowance.json │ │ ├── valid_allowance_case3 │ │ │ ├── allowance.json │ │ │ └── base.json │ │ ├── winter_coat │ │ │ ├── input.json │ │ │ └── output.json │ │ └── women_jacket │ │ │ ├── input.json │ │ │ └── output.json │ ├── stable.cpp │ ├── stable.h │ ├── tst_dxf.cpp │ ├── tst_dxf.h │ ├── tst_findpoint.cpp │ ├── tst_findpoint.h │ ├── tst_misc.cpp │ ├── tst_misc.h │ ├── tst_nameregexp.cpp │ ├── tst_nameregexp.h │ ├── tst_qmutokenparser.cpp │ ├── tst_qmutokenparser.h │ ├── tst_qstringiterator.cpp │ ├── tst_qstringiterator.h │ ├── tst_qtextcodec.cpp │ ├── tst_qtextcodec.h │ ├── tst_readval.cpp │ ├── tst_readval.h │ ├── tst_svgfontwritingsystem.cpp │ ├── tst_svgfontwritingsystem.h │ ├── tst_tape │ │ ├── text.vit │ │ └── text.vst │ ├── tst_utf8.cpp │ ├── tst_utf8.h │ ├── tst_vabstractcurve.cpp │ ├── tst_vabstractcurve.h │ ├── tst_vabstractpiece.cpp │ ├── tst_vabstractpiece.h │ ├── tst_valentina │ │ ├── issue_256.val │ │ └── text.val │ ├── tst_varc.cpp │ ├── tst_varc.h │ ├── tst_vboundary.cpp │ ├── tst_vboundary.h │ ├── tst_vcommandline.cpp │ ├── tst_vcommandline.h │ ├── tst_vcubicbezierpath.cpp │ ├── tst_vcubicbezierpath.h │ ├── tst_vellipticalarc.cpp │ ├── tst_vellipticalarc.h │ ├── tst_vgobject.cpp │ ├── tst_vgobject.h │ ├── tst_vlayoutdetail.cpp │ ├── tst_vlayoutdetail.h │ ├── tst_vlockguard.cpp │ ├── tst_vlockguard.h │ ├── tst_vmeasurements.cpp │ ├── tst_vmeasurements.h │ ├── tst_vpiece.cpp │ ├── tst_vpiece.h │ ├── tst_vpointf.cpp │ ├── tst_vpointf.h │ ├── tst_vposter.cpp │ ├── tst_vposter.h │ ├── tst_vspline.cpp │ ├── tst_vspline.h │ ├── tst_vsplinepath.cpp │ ├── tst_vsplinepath.h │ ├── tst_vsvgpathtokenizer.cpp │ ├── tst_vsvgpathtokenizer.h │ ├── tst_vtextstream.cpp │ ├── tst_vtextstream.h │ ├── tst_vtheme.cpp │ ├── tst_vtheme.h │ ├── tst_vtooluniondetails.cpp │ ├── tst_vtooluniondetails.h │ ├── tst_vtranslatevars.cpp │ ├── tst_vtranslatevars.h │ ├── tst_xsdschema.cpp │ ├── tst_xsdschema.h │ └── vtextstream │ │ ├── helpers.qbs │ │ ├── readAllStdinProcess │ │ ├── main.cpp │ │ └── readAllStdinProcess.qbs │ │ ├── readLineStdinProcess │ │ ├── main.cpp │ │ └── readLineStdinProcess.qbs │ │ ├── rfc3261.txt │ │ ├── shift-jis.txt │ │ ├── stdinProcess │ │ ├── main.cpp │ │ └── stdinProcess.qbs │ │ └── task113817.txt │ └── test.qbs ├── valentina.qbs └── winsetup.qbs /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/actions/download-qtc/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/.github/actions/download-qtc/action.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /LICENSE_GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/LICENSE_GPL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/README.md -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/conanfile.py -------------------------------------------------------------------------------- /dist/AppImage/AppImageBuilder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/AppImage/AppImageBuilder.yml -------------------------------------------------------------------------------- /dist/Puzzle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/Puzzle.icns -------------------------------------------------------------------------------- /dist/Tape.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/Tape.icns -------------------------------------------------------------------------------- /dist/Valentina.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/Valentina.icns -------------------------------------------------------------------------------- /dist/debian/puzzle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/debian/puzzle.1 -------------------------------------------------------------------------------- /dist/debian/tape.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/debian/tape.1 -------------------------------------------------------------------------------- /dist/debian/valentina.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/debian/valentina.1 -------------------------------------------------------------------------------- /dist/macos/bin64/pdftops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/bin64/pdftops -------------------------------------------------------------------------------- /dist/macos/dmg/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/dmg/background.svg -------------------------------------------------------------------------------- /dist/macos/dmg/background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/dmg/background.tiff -------------------------------------------------------------------------------- /dist/macos/dmg/dmg.iconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/dmg/dmg.iconset/Contents.json -------------------------------------------------------------------------------- /dist/macos/dmg/en_US.lproj/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/dmg/en_US.lproj/LICENSE -------------------------------------------------------------------------------- /dist/macos/dmg/window_size.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/dmg/window_size.scpt -------------------------------------------------------------------------------- /dist/macos/i-measurements.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/i-measurements.icns -------------------------------------------------------------------------------- /dist/macos/k-measurements.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/k-measurements.icns -------------------------------------------------------------------------------- /dist/macos/layout.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/layout.icns -------------------------------------------------------------------------------- /dist/macos/pattern.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/pattern.icns -------------------------------------------------------------------------------- /dist/macos/puzzle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/puzzle/Info.plist -------------------------------------------------------------------------------- /dist/macos/s-measurements.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/s-measurements.icns -------------------------------------------------------------------------------- /dist/macos/tape/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/tape/Info.plist -------------------------------------------------------------------------------- /dist/macos/valentina/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/macos/valentina/Info.plist -------------------------------------------------------------------------------- /dist/ua.com.smart-pattern.puzzle.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/ua.com.smart-pattern.puzzle.desktop -------------------------------------------------------------------------------- /dist/ua.com.smart-pattern.tape.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/ua.com.smart-pattern.tape.desktop -------------------------------------------------------------------------------- /dist/win/i-measurements.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/i-measurements.ico -------------------------------------------------------------------------------- /dist/win/inno/CodeDependencies.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/inno/CodeDependencies.iss -------------------------------------------------------------------------------- /dist/win/inno/Languages/Croatian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/inno/Languages/Croatian.isl -------------------------------------------------------------------------------- /dist/win/inno/Languages/Greek.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/inno/Languages/Greek.isl -------------------------------------------------------------------------------- /dist/win/inno/Languages/Icelandic.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/inno/Languages/Icelandic.isl -------------------------------------------------------------------------------- /dist/win/inno/valentina.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/inno/valentina.iss -------------------------------------------------------------------------------- /dist/win/k-measurements.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/k-measurements.ico -------------------------------------------------------------------------------- /dist/win/layout.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/layout.ico -------------------------------------------------------------------------------- /dist/win/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/msvcr120.dll -------------------------------------------------------------------------------- /dist/win/openssl/win32/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/openssl/win32/libcrypto-1_1.dll -------------------------------------------------------------------------------- /dist/win/openssl/win32/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/openssl/win32/libssl-1_1.dll -------------------------------------------------------------------------------- /dist/win/pattern.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/pattern.ico -------------------------------------------------------------------------------- /dist/win/pdftops.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/pdftops.exe -------------------------------------------------------------------------------- /dist/win/s-measurements.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/s-measurements.ico -------------------------------------------------------------------------------- /dist/win/valentina.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dist/win/valentina.ico -------------------------------------------------------------------------------- /dmg.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/dmg.qbs -------------------------------------------------------------------------------- /qbs/imports/VApp.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/imports/VApp.qbs -------------------------------------------------------------------------------- /qbs/imports/VDynamicLib.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/imports/VDynamicLib.qbs -------------------------------------------------------------------------------- /qbs/imports/VLib.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/imports/VLib.qbs -------------------------------------------------------------------------------- /qbs/imports/VTestApp.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/imports/VTestApp.qbs -------------------------------------------------------------------------------- /qbs/imports/VToolApp.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/imports/VToolApp.qbs -------------------------------------------------------------------------------- /qbs/imports/conan/ConanfileProbe.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/imports/conan/ConanfileProbe.qbs -------------------------------------------------------------------------------- /qbs/module-providers/conan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/module-providers/conan.js -------------------------------------------------------------------------------- /qbs/module-providers/conan.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/module-providers/conan.qbs -------------------------------------------------------------------------------- /qbs/module-providers/path-probe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/module-providers/path-probe.js -------------------------------------------------------------------------------- /qbs/modules/buildconfig/buildconfig.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/buildconfig/buildconfig.qbs -------------------------------------------------------------------------------- /qbs/modules/ccache/ccache.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/ccache/ccache.qbs -------------------------------------------------------------------------------- /qbs/modules/coverage/coverage.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/coverage/coverage.qbs -------------------------------------------------------------------------------- /qbs/modules/ebr/ebr.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/ebr/ebr.qbs -------------------------------------------------------------------------------- /qbs/modules/ebr/rcc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/ebr/rcc.js -------------------------------------------------------------------------------- /qbs/modules/freedesktop2/freedesktop2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/freedesktop2/freedesktop2.js -------------------------------------------------------------------------------- /qbs/modules/i18n/i18n.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/i18n/i18n.qbs -------------------------------------------------------------------------------- /qbs/modules/i18nconfig/i18nconfig.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/i18nconfig/i18nconfig.qbs -------------------------------------------------------------------------------- /qbs/modules/macdeployqt/macdeployqt.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/macdeployqt/macdeployqt.qbs -------------------------------------------------------------------------------- /qbs/modules/multibundle/multibundle.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/multibundle/multibundle.qbs -------------------------------------------------------------------------------- /qbs/modules/vcs2/vcs2.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/vcs2/vcs2.qbs -------------------------------------------------------------------------------- /qbs/modules/windeployqt/windeployqt.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/qbs/modules/windeployqt/windeployqt.qbs -------------------------------------------------------------------------------- /scripts/alphabets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/alphabets.py -------------------------------------------------------------------------------- /scripts/appimage-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/appimage-deploy.sh -------------------------------------------------------------------------------- /scripts/appveyor-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/appveyor-deploy.ps1 -------------------------------------------------------------------------------- /scripts/cirrus-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/cirrus-deploy.sh -------------------------------------------------------------------------------- /scripts/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/deploy.py -------------------------------------------------------------------------------- /scripts/fix_png.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/fix_png.sh -------------------------------------------------------------------------------- /scripts/generate_tool_cursor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/generate_tool_cursor.sh -------------------------------------------------------------------------------- /scripts/gitlab_package_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/gitlab_package_upload.sh -------------------------------------------------------------------------------- /scripts/install-qt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/install-qt.sh -------------------------------------------------------------------------------- /scripts/install_dump_sysms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/install_dump_sysms.ps1 -------------------------------------------------------------------------------- /scripts/lupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/lupdate.sh -------------------------------------------------------------------------------- /scripts/makedoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/makedoc.sh -------------------------------------------------------------------------------- /scripts/man2pdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/man2pdf.sh -------------------------------------------------------------------------------- /scripts/personaltypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/personaltypes.py -------------------------------------------------------------------------------- /scripts/sonar-scanner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/sonar-scanner.sh -------------------------------------------------------------------------------- /scripts/symupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/symupload.py -------------------------------------------------------------------------------- /scripts/treestate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/treestate.py -------------------------------------------------------------------------------- /scripts/win_ico.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/scripts/win_ico.sh -------------------------------------------------------------------------------- /share/DocumentIconBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/DocumentIconBackground.svg -------------------------------------------------------------------------------- /share/Tape-Logo_v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/Tape-Logo_v1.svg -------------------------------------------------------------------------------- /share/ValDocument.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ValDocument.svg -------------------------------------------------------------------------------- /share/ValDocumentMACXStyle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ValDocumentMACXStyle.svg -------------------------------------------------------------------------------- /share/ValDocumentOriginalSource.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ValDocumentOriginalSource.ai -------------------------------------------------------------------------------- /share/Valentina-Logo_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/Valentina-Logo_v1.png -------------------------------------------------------------------------------- /share/Valentina-Logo_v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/Valentina-Logo_v1.svg -------------------------------------------------------------------------------- /share/Valentina-Logo_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/Valentina-Logo_v2.png -------------------------------------------------------------------------------- /share/Valentina-Logo_v2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/Valentina-Logo_v2.svg -------------------------------------------------------------------------------- /share/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ci/README.md -------------------------------------------------------------------------------- /share/ci/conan/profiles/appimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ci/conan/profiles/appimage -------------------------------------------------------------------------------- /share/ci/conan/profiles/macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ci/conan/profiles/macos -------------------------------------------------------------------------------- /share/ci/conan/profiles/macos_arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ci/conan/profiles/macos_arm -------------------------------------------------------------------------------- /share/ci/conan/profiles/windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ci/conan/profiles/windows -------------------------------------------------------------------------------- /share/ci/conan/profiles/windows_legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ci/conan/profiles/windows_legacy -------------------------------------------------------------------------------- /share/ci/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ci/pyproject.toml -------------------------------------------------------------------------------- /share/ci/requirements-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/ci/requirements-ci.txt -------------------------------------------------------------------------------- /share/copyright_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/copyright_template.txt -------------------------------------------------------------------------------- /share/coverity_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/coverity_model.cpp -------------------------------------------------------------------------------- /share/fabric-pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/fabric-pattern.svg -------------------------------------------------------------------------------- /share/icons/128x128/apps/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/128x128/apps/puzzle.png -------------------------------------------------------------------------------- /share/icons/128x128/apps/tape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/128x128/apps/tape.png -------------------------------------------------------------------------------- /share/icons/128x128/apps/valentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/128x128/apps/valentina.png -------------------------------------------------------------------------------- /share/icons/256x256/apps/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/256x256/apps/puzzle.png -------------------------------------------------------------------------------- /share/icons/256x256/apps/tape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/256x256/apps/tape.png -------------------------------------------------------------------------------- /share/icons/256x256/apps/valentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/256x256/apps/valentina.png -------------------------------------------------------------------------------- /share/icons/48x48/apps/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/48x48/apps/puzzle.png -------------------------------------------------------------------------------- /share/icons/48x48/apps/tape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/48x48/apps/tape.png -------------------------------------------------------------------------------- /share/icons/48x48/apps/valentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/48x48/apps/valentina.png -------------------------------------------------------------------------------- /share/icons/512x512/apps/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/512x512/apps/puzzle.png -------------------------------------------------------------------------------- /share/icons/512x512/apps/tape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/512x512/apps/tape.png -------------------------------------------------------------------------------- /share/icons/512x512/apps/valentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/512x512/apps/valentina.png -------------------------------------------------------------------------------- /share/icons/64x64/apps/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/64x64/apps/puzzle.png -------------------------------------------------------------------------------- /share/icons/64x64/apps/tape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/64x64/apps/tape.png -------------------------------------------------------------------------------- /share/icons/64x64/apps/valentina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/icons/64x64/apps/valentina.png -------------------------------------------------------------------------------- /share/new-icons/Valentina.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/new-icons/Valentina.fig -------------------------------------------------------------------------------- /share/new-icons/puzzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/new-icons/puzzle.svg -------------------------------------------------------------------------------- /share/new-icons/tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/new-icons/tape.svg -------------------------------------------------------------------------------- /share/new-icons/valentina-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/new-icons/valentina-full.svg -------------------------------------------------------------------------------- /share/new-icons/valentina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/new-icons/valentina.svg -------------------------------------------------------------------------------- /share/puzzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/puzzle.svg -------------------------------------------------------------------------------- /share/qtlogging.ini: -------------------------------------------------------------------------------- 1 | [Rules] 2 | qt.*.debug=false 3 | -------------------------------------------------------------------------------- /share/size-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/size-guide.png -------------------------------------------------------------------------------- /share/translations/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* Intentionally empty */ 2 | -------------------------------------------------------------------------------- /share/translations/translations.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/translations.qbs -------------------------------------------------------------------------------- /share/translations/valentina.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina.ts -------------------------------------------------------------------------------- /share/translations/valentina_cs_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_cs_CZ.ts -------------------------------------------------------------------------------- /share/translations/valentina_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_de_DE.ts -------------------------------------------------------------------------------- /share/translations/valentina_el_GR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_el_GR.ts -------------------------------------------------------------------------------- /share/translations/valentina_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_es_ES.ts -------------------------------------------------------------------------------- /share/translations/valentina_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_fi_FI.ts -------------------------------------------------------------------------------- /share/translations/valentina_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_fr_FR.ts -------------------------------------------------------------------------------- /share/translations/valentina_he_IL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_he_IL.ts -------------------------------------------------------------------------------- /share/translations/valentina_hr_HR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_hr_HR.ts -------------------------------------------------------------------------------- /share/translations/valentina_hu_HU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_hu_HU.ts -------------------------------------------------------------------------------- /share/translations/valentina_id_ID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_id_ID.ts -------------------------------------------------------------------------------- /share/translations/valentina_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_it_IT.ts -------------------------------------------------------------------------------- /share/translations/valentina_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_ja_JP.ts -------------------------------------------------------------------------------- /share/translations/valentina_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_nl_NL.ts -------------------------------------------------------------------------------- /share/translations/valentina_pl_PL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_pl_PL.ts -------------------------------------------------------------------------------- /share/translations/valentina_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_pt_BR.ts -------------------------------------------------------------------------------- /share/translations/valentina_pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_pt_PT.ts -------------------------------------------------------------------------------- /share/translations/valentina_ro_RO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_ro_RO.ts -------------------------------------------------------------------------------- /share/translations/valentina_uk_UA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_uk_UA.ts -------------------------------------------------------------------------------- /share/translations/valentina_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/translations/valentina_zh_CN.ts -------------------------------------------------------------------------------- /share/valentina_code_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/share/valentina_code_style.xml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/app/app.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/app.qbs -------------------------------------------------------------------------------- /src/app/puzzle/carousel/vpcarrousel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/carousel/vpcarrousel.cpp -------------------------------------------------------------------------------- /src/app/puzzle/carousel/vpcarrousel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/carousel/vpcarrousel.h -------------------------------------------------------------------------------- /src/app/puzzle/carousel/vpcarrousel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/carousel/vpcarrousel.ui -------------------------------------------------------------------------------- /src/app/puzzle/dialogs/vpdialogabout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/dialogs/vpdialogabout.cpp -------------------------------------------------------------------------------- /src/app/puzzle/dialogs/vpdialogabout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/dialogs/vpdialogabout.h -------------------------------------------------------------------------------- /src/app/puzzle/dialogs/vpdialogabout.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/dialogs/vpdialogabout.ui -------------------------------------------------------------------------------- /src/app/puzzle/layout/layoutdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/layout/layoutdef.cpp -------------------------------------------------------------------------------- /src/app/puzzle/layout/layoutdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/layout/layoutdef.h -------------------------------------------------------------------------------- /src/app/puzzle/layout/vplayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/layout/vplayout.cpp -------------------------------------------------------------------------------- /src/app/puzzle/layout/vplayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/layout/vplayout.h -------------------------------------------------------------------------------- /src/app/puzzle/layout/vplayoutsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/layout/vplayoutsettings.h -------------------------------------------------------------------------------- /src/app/puzzle/layout/vppiece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/layout/vppiece.cpp -------------------------------------------------------------------------------- /src/app/puzzle/layout/vppiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/layout/vppiece.h -------------------------------------------------------------------------------- /src/app/puzzle/layout/vpsheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/layout/vpsheet.cpp -------------------------------------------------------------------------------- /src/app/puzzle/layout/vpsheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/layout/vpsheet.h -------------------------------------------------------------------------------- /src/app/puzzle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/main.cpp -------------------------------------------------------------------------------- /src/app/puzzle/puzzle.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/puzzle.qbs -------------------------------------------------------------------------------- /src/app/puzzle/scene/scenedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/scene/scenedef.h -------------------------------------------------------------------------------- /src/app/puzzle/scene/vpgraphicspiece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/scene/vpgraphicspiece.cpp -------------------------------------------------------------------------------- /src/app/puzzle/scene/vpgraphicspiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/scene/vpgraphicspiece.h -------------------------------------------------------------------------------- /src/app/puzzle/scene/vpgraphicssheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/scene/vpgraphicssheet.cpp -------------------------------------------------------------------------------- /src/app/puzzle/scene/vpgraphicssheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/scene/vpgraphicssheet.h -------------------------------------------------------------------------------- /src/app/puzzle/share/resources/puzzle.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/share/resources/puzzle.rc -------------------------------------------------------------------------------- /src/app/puzzle/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/stable.cpp -------------------------------------------------------------------------------- /src/app/puzzle/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/stable.h -------------------------------------------------------------------------------- /src/app/puzzle/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/version.h -------------------------------------------------------------------------------- /src/app/puzzle/vpapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpapplication.cpp -------------------------------------------------------------------------------- /src/app/puzzle/vpapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpapplication.h -------------------------------------------------------------------------------- /src/app/puzzle/vpcommandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpcommandline.cpp -------------------------------------------------------------------------------- /src/app/puzzle/vpcommandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpcommandline.h -------------------------------------------------------------------------------- /src/app/puzzle/vpcommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpcommands.cpp -------------------------------------------------------------------------------- /src/app/puzzle/vpcommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpcommands.h -------------------------------------------------------------------------------- /src/app/puzzle/vpmainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpmainwindow.cpp -------------------------------------------------------------------------------- /src/app/puzzle/vpmainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpmainwindow.h -------------------------------------------------------------------------------- /src/app/puzzle/vpmainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpmainwindow.ui -------------------------------------------------------------------------------- /src/app/puzzle/vpsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpsettings.cpp -------------------------------------------------------------------------------- /src/app/puzzle/vpsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpsettings.h -------------------------------------------------------------------------------- /src/app/puzzle/vptilefactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vptilefactory.cpp -------------------------------------------------------------------------------- /src/app/puzzle/vptilefactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vptilefactory.h -------------------------------------------------------------------------------- /src/app/puzzle/vpuzzleshortcutmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/vpuzzleshortcutmanager.h -------------------------------------------------------------------------------- /src/app/puzzle/xml/vplayoutfilereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/xml/vplayoutfilereader.h -------------------------------------------------------------------------------- /src/app/puzzle/xml/vplayoutfilewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/xml/vplayoutfilewriter.h -------------------------------------------------------------------------------- /src/app/puzzle/xml/vplayoutliterals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/xml/vplayoutliterals.cpp -------------------------------------------------------------------------------- /src/app/puzzle/xml/vplayoutliterals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/puzzle/xml/vplayoutliterals.h -------------------------------------------------------------------------------- /src/app/share/collection/Keiko_skirt.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/Keiko_skirt.val -------------------------------------------------------------------------------- /src/app/share/collection/Lara_Jil.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/Lara_Jil.vit -------------------------------------------------------------------------------- /src/app/share/collection/Sleeve.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/Sleeve.val -------------------------------------------------------------------------------- /src/app/share/collection/Susan.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/Susan.vit -------------------------------------------------------------------------------- /src/app/share/collection/TShirt_test.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/TShirt_test.val -------------------------------------------------------------------------------- /src/app/share/collection/TestDart.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/TestDart.val -------------------------------------------------------------------------------- /src/app/share/collection/TestPuzzle.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/TestPuzzle.val -------------------------------------------------------------------------------- /src/app/share/collection/blusa.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/blusa.vit -------------------------------------------------------------------------------- /src/app/share/collection/bra.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/bra.val -------------------------------------------------------------------------------- /src/app/share/collection/bra.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/bra.vit -------------------------------------------------------------------------------- /src/app/share/collection/keiko.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/keiko.vit -------------------------------------------------------------------------------- /src/app/share/collection/modell_2.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/modell_2.val -------------------------------------------------------------------------------- /src/app/share/collection/pantsM7.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/pantsM7.val -------------------------------------------------------------------------------- /src/app/share/collection/truezerobug.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/collection/truezerobug.val -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSAllure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSAllure.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSBird.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSBird.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSBrush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSBrush.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSElfin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSElfin.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSFelix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSFelix.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSInvite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSInvite.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSLeague.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSLeague.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSNeato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSNeato.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSNixish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSNixish.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSPepita.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSPepita.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSSwiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSSwiss.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/EMSTech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/EMSTech.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/EMS/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/EMS/OFL.txt -------------------------------------------------------------------------------- /src/app/share/svgfonts/ISF/ISFScript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/ISF/ISFScript.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/ISF/ISFSquare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/ISF/ISFSquare.svg -------------------------------------------------------------------------------- /src/app/share/svgfonts/ISF/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/ISF/OFL.txt -------------------------------------------------------------------------------- /src/app/share/svgfonts/Relief/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/share/svgfonts/Relief/OFL.txt -------------------------------------------------------------------------------- /src/app/tape/dialogs/dialogabouttape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/dialogs/dialogabouttape.cpp -------------------------------------------------------------------------------- /src/app/tape/dialogs/dialogabouttape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/dialogs/dialogabouttape.h -------------------------------------------------------------------------------- /src/app/tape/dialogs/dialogabouttape.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/dialogs/dialogabouttape.ui -------------------------------------------------------------------------------- /src/app/tape/dialogs/dialogmdatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/dialogs/dialogmdatabase.cpp -------------------------------------------------------------------------------- /src/app/tape/dialogs/dialogmdatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/dialogs/dialogmdatabase.h -------------------------------------------------------------------------------- /src/app/tape/dialogs/dialogmdatabase.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/dialogs/dialogmdatabase.ui -------------------------------------------------------------------------------- /src/app/tape/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/main.cpp -------------------------------------------------------------------------------- /src/app/tape/mapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/mapplication.cpp -------------------------------------------------------------------------------- /src/app/tape/mapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/mapplication.h -------------------------------------------------------------------------------- /src/app/tape/share/resources/tape.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/share/resources/tape.ico -------------------------------------------------------------------------------- /src/app/tape/share/resources/tape.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/share/resources/tape.rc -------------------------------------------------------------------------------- /src/app/tape/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/stable.cpp -------------------------------------------------------------------------------- /src/app/tape/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/stable.h -------------------------------------------------------------------------------- /src/app/tape/tape.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/tape.qbs -------------------------------------------------------------------------------- /src/app/tape/tkmmainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/tkmmainwindow.cpp -------------------------------------------------------------------------------- /src/app/tape/tkmmainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/tkmmainwindow.h -------------------------------------------------------------------------------- /src/app/tape/tkmmainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/tkmmainwindow.ui -------------------------------------------------------------------------------- /src/app/tape/tmainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/tmainwindow.cpp -------------------------------------------------------------------------------- /src/app/tape/tmainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/tmainwindow.h -------------------------------------------------------------------------------- /src/app/tape/tmainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/tmainwindow.ui -------------------------------------------------------------------------------- /src/app/tape/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/version.h -------------------------------------------------------------------------------- /src/app/tape/vlitepattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/vlitepattern.cpp -------------------------------------------------------------------------------- /src/app/tape/vlitepattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/vlitepattern.h -------------------------------------------------------------------------------- /src/app/tape/vtapesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/vtapesettings.cpp -------------------------------------------------------------------------------- /src/app/tape/vtapesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/vtapesettings.h -------------------------------------------------------------------------------- /src/app/tape/vtapeshortcutmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/vtapeshortcutmanager.cpp -------------------------------------------------------------------------------- /src/app/tape/vtapeshortcutmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/tape/vtapeshortcutmanager.h -------------------------------------------------------------------------------- /src/app/valentina/core/vapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/core/vapplication.cpp -------------------------------------------------------------------------------- /src/app/valentina/core/vapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/core/vapplication.h -------------------------------------------------------------------------------- /src/app/valentina/core/vcmdexport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/core/vcmdexport.cpp -------------------------------------------------------------------------------- /src/app/valentina/core/vcmdexport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/core/vcmdexport.h -------------------------------------------------------------------------------- /src/app/valentina/dialogs/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/dialogs/dialogs.h -------------------------------------------------------------------------------- /src/app/valentina/doc/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/doc/doxygen/Doxyfile -------------------------------------------------------------------------------- /src/app/valentina/doc/doxygen/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/doc/doxygen/logo.png -------------------------------------------------------------------------------- /src/app/valentina/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/main.cpp -------------------------------------------------------------------------------- /src/app/valentina/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/mainwindow.cpp -------------------------------------------------------------------------------- /src/app/valentina/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/mainwindow.h -------------------------------------------------------------------------------- /src/app/valentina/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/mainwindow.ui -------------------------------------------------------------------------------- /src/app/valentina/mainwindowsnogui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/mainwindowsnogui.cpp -------------------------------------------------------------------------------- /src/app/valentina/mainwindowsnogui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/mainwindowsnogui.h -------------------------------------------------------------------------------- /src/app/valentina/share/resources/toolicon/svg-dark/duplicate_detail.svg: -------------------------------------------------------------------------------- 1 | ../svg-light/duplicate_detail.svg -------------------------------------------------------------------------------- /src/app/valentina/share/resources/toolicon/svg-dark/new_detail.svg: -------------------------------------------------------------------------------- 1 | ../svg-light/new_detail.svg -------------------------------------------------------------------------------- /src/app/valentina/share/resources/toolicon/svg-dark/pin.svg: -------------------------------------------------------------------------------- 1 | ../svg-light/pin.svg -------------------------------------------------------------------------------- /src/app/valentina/share/resources/toolicon/svg-dark/point_of_intersection_circles.svg: -------------------------------------------------------------------------------- 1 | ../svg-light/point_of_intersection_circles.svg -------------------------------------------------------------------------------- /src/app/valentina/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/stable.cpp -------------------------------------------------------------------------------- /src/app/valentina/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/stable.h -------------------------------------------------------------------------------- /src/app/valentina/valentina.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/valentina.qbs -------------------------------------------------------------------------------- /src/app/valentina/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/version.h -------------------------------------------------------------------------------- /src/app/valentina/xml/vpattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/xml/vpattern.cpp -------------------------------------------------------------------------------- /src/app/valentina/xml/vpattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/app/valentina/xml/vpattern.h -------------------------------------------------------------------------------- /src/libs/fervor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/LICENSE -------------------------------------------------------------------------------- /src/libs/fervor/data/Appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/data/Appcast.xml -------------------------------------------------------------------------------- /src/libs/fervor/fervor.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/fervor.qbs -------------------------------------------------------------------------------- /src/libs/fervor/fvavailableupdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/fvavailableupdate.cpp -------------------------------------------------------------------------------- /src/libs/fervor/fvavailableupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/fvavailableupdate.h -------------------------------------------------------------------------------- /src/libs/fervor/fvupdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/fvupdater.cpp -------------------------------------------------------------------------------- /src/libs/fervor/fvupdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/fvupdater.h -------------------------------------------------------------------------------- /src/libs/fervor/fvupdatewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/fvupdatewindow.cpp -------------------------------------------------------------------------------- /src/libs/fervor/fvupdatewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/fvupdatewindow.h -------------------------------------------------------------------------------- /src/libs/fervor/fvupdatewindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/fvupdatewindow.ui -------------------------------------------------------------------------------- /src/libs/fervor/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/stable.cpp -------------------------------------------------------------------------------- /src/libs/fervor/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/fervor/stable.h -------------------------------------------------------------------------------- /src/libs/ifc/exception/vexceptionbadid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/exception/vexceptionbadid.h -------------------------------------------------------------------------------- /src/libs/ifc/exception/vexceptionundo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/exception/vexceptionundo.h -------------------------------------------------------------------------------- /src/libs/ifc/ifc.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/ifc.qbs -------------------------------------------------------------------------------- /src/libs/ifc/ifcdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/ifcdef.cpp -------------------------------------------------------------------------------- /src/libs/ifc/ifcdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/ifcdef.h -------------------------------------------------------------------------------- /src/libs/ifc/schema.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema.qrc -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.1.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.1.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.1.1.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.1.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.1.2.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.1.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.1.3.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.1.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.1.4.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.1.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.1.5.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.1.6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.1.6.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.1.7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.1.7.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.1.8.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.1.8.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.1.9.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.1.9.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/layout/v0.2.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/layout/v0.2.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.1.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.1.4.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.2.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.2.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.2.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.2.1.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.2.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.2.2.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.2.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.2.3.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.2.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.2.4.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.2.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.2.5.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.2.6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.2.6.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.2.7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.2.7.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.3.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.3.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.3.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.3.1.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.3.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.3.2.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.3.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.3.3.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.3.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.3.4.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.3.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.3.5.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.3.6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.3.6.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.3.7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.3.7.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.3.8.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.3.8.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.3.9.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.3.9.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.4.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.4.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.4.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.4.1.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.4.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.4.2.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.4.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.4.3.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.4.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.4.4.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.4.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.4.5.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.4.6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.4.6.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.4.7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.4.7.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.4.8.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.4.8.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.5.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.5.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.5.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.5.1.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.6.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.6.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.6.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.6.1.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.6.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.6.2.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.6.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.6.3.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.6.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.6.4.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.6.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.6.5.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.6.6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.6.6.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.1.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.10.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.10.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.11.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.11.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.12.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.12.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.13.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.13.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.2.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.3.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.4.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.5.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.6.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.7.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.8.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.8.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.7.9.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.7.9.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.1.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.10.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.10.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.11.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.11.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.12.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.12.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.13.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.13.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.2.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.3.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.4.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.5.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.6.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.7.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.8.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.8.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.8.9.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.8.9.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.9.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.9.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.9.1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.9.1.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.9.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.9.2.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.9.3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.9.3.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.9.4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.9.4.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.9.5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.9.5.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.9.6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.9.6.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.9.7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.9.7.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.9.8.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.9.8.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v0.9.9.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v0.9.9.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/pattern/v1.0.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/pattern/v1.0.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/watermark/v1.0.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/watermark/v1.0.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/schema/watermark/v1.1.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/schema/watermark/v1.1.0.xsd -------------------------------------------------------------------------------- /src/libs/ifc/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/stable.cpp -------------------------------------------------------------------------------- /src/libs/ifc/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/stable.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/utils.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/utils.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vabstractconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vabstractconverter.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vabstractconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vabstractconverter.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vabstractmconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vabstractmconverter.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vabstractmconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vabstractmconverter.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vabstractpattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vabstractpattern.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vabstractpattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vabstractpattern.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vdomdocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vdomdocument.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vdomdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vdomdocument.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vlayoutconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vlayoutconverter.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vlayoutconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vlayoutconverter.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vparsererrorhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vparsererrorhandler.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vparsererrorhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vparsererrorhandler.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vpatternconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vpatternconverter.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vpatternconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vpatternconverter.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vpatternimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vpatternimage.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vpatternimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vpatternimage.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vtoolrecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vtoolrecord.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vtoolrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vtoolrecord.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vvitconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vvitconverter.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vvitconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vvitconverter.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vvstconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vvstconverter.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vvstconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vvstconverter.h -------------------------------------------------------------------------------- /src/libs/ifc/xml/vwatermarkconverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vwatermarkconverter.cpp -------------------------------------------------------------------------------- /src/libs/ifc/xml/vwatermarkconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/ifc/xml/vwatermarkconverter.h -------------------------------------------------------------------------------- /src/libs/libs.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/libs.qbs -------------------------------------------------------------------------------- /src/libs/qmuparser/LICENSE_BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/LICENSE_BSD.txt -------------------------------------------------------------------------------- /src/libs/qmuparser/doc/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/doc/doxygen/Doxyfile -------------------------------------------------------------------------------- /src/libs/qmuparser/make_unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/make_unique.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmudef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmudef.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/qmudef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmudef.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuformulabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuformulabase.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuformulabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuformulabase.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparser.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparser.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparser.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparser.qbs -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparser_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparser_global.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparserbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparserbase.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparserbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparserbase.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparserbytecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparserbytecode.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparserbytecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparserbytecode.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparsercallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparsercallback.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparsercallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparsercallback.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparsercallback_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparsercallback_p.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparserdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparserdef.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparsererror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparsererror.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparsererror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparsererror.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparserfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparserfixes.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparsertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparsertest.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparsertest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparsertest.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmuparsertoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmuparsertoken.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmutokenparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmutokenparser.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/qmutokenparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmutokenparser.h -------------------------------------------------------------------------------- /src/libs/qmuparser/qmutranslation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmutranslation.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/qmutranslation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/qmutranslation.h -------------------------------------------------------------------------------- /src/libs/qmuparser/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/stable.cpp -------------------------------------------------------------------------------- /src/libs/qmuparser/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/qmuparser/stable.h -------------------------------------------------------------------------------- /src/libs/vdxf/dxfdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/dxfdef.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/dxfdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/dxfdef.h -------------------------------------------------------------------------------- /src/libs/vdxf/dxiface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/dxiface.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/dxiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/dxiface.h -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/AUTHORS -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/COPYING -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/README -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_base.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_base.h -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_classes.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_classes.h -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_entities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_entities.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_entities.h -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_header.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_header.h -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_interface.h -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_objects.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_objects.h -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/drw_reserve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/drw_reserve.h -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/intern/drw_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/intern/drw_dbg.h -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/libdxfrw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/libdxfrw.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/libdxfrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/libdxfrw.h -------------------------------------------------------------------------------- /src/libs/vdxf/libdxfrw/main_doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/libdxfrw/main_doc.h -------------------------------------------------------------------------------- /src/libs/vdxf/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/stable.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/stable.h -------------------------------------------------------------------------------- /src/libs/vdxf/vdxf.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/vdxf.qbs -------------------------------------------------------------------------------- /src/libs/vdxf/vdxfengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/vdxfengine.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/vdxfengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/vdxfengine.h -------------------------------------------------------------------------------- /src/libs/vdxf/vdxfpaintdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/vdxfpaintdevice.cpp -------------------------------------------------------------------------------- /src/libs/vdxf/vdxfpaintdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vdxf/vdxfpaintdevice.h -------------------------------------------------------------------------------- /src/libs/vformat/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/stable.cpp -------------------------------------------------------------------------------- /src/libs/vformat/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/stable.h -------------------------------------------------------------------------------- /src/libs/vformat/vdimensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vdimensions.cpp -------------------------------------------------------------------------------- /src/libs/vformat/vdimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vdimensions.h -------------------------------------------------------------------------------- /src/libs/vformat/vformat.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vformat.qbs -------------------------------------------------------------------------------- /src/libs/vformat/vlabeltemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vlabeltemplate.cpp -------------------------------------------------------------------------------- /src/libs/vformat/vlabeltemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vlabeltemplate.h -------------------------------------------------------------------------------- /src/libs/vformat/vmeasurements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vmeasurements.cpp -------------------------------------------------------------------------------- /src/libs/vformat/vmeasurements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vmeasurements.h -------------------------------------------------------------------------------- /src/libs/vformat/vpatternrecipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vpatternrecipe.cpp -------------------------------------------------------------------------------- /src/libs/vformat/vpatternrecipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vpatternrecipe.h -------------------------------------------------------------------------------- /src/libs/vformat/vwatermark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vwatermark.cpp -------------------------------------------------------------------------------- /src/libs/vformat/vwatermark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vformat/vwatermark.h -------------------------------------------------------------------------------- /src/libs/vganalytics/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vganalytics/def.h -------------------------------------------------------------------------------- /src/libs/vganalytics/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vganalytics/stable.cpp -------------------------------------------------------------------------------- /src/libs/vganalytics/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vganalytics/stable.h -------------------------------------------------------------------------------- /src/libs/vganalytics/vganalytics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vganalytics/vganalytics.cpp -------------------------------------------------------------------------------- /src/libs/vganalytics/vganalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vganalytics/vganalytics.h -------------------------------------------------------------------------------- /src/libs/vganalytics/vganalytics.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vganalytics/vganalytics.qbs -------------------------------------------------------------------------------- /src/libs/vganalytics/vganalyticsworker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vganalytics/vganalyticsworker.h -------------------------------------------------------------------------------- /src/libs/vgeometry/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/stable.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/stable.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vabstractarc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vabstractarc.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vabstractarc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vabstractarc.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vabstractarc_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vabstractarc_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vabstractbezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vabstractbezier.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vabstractbezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vabstractbezier.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vabstractcurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vabstractcurve.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vabstractcurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vabstractcurve.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vabstractcurve_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vabstractcurve_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/varc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/varc.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/varc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/varc.h -------------------------------------------------------------------------------- /src/libs/vgeometry/varc_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/varc_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vcubicbezier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vcubicbezier.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vcubicbezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vcubicbezier.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vcubicbezier_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vcubicbezier_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vcubicbezierpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vcubicbezierpath.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vcubicbezierpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vcubicbezierpath.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vcubicbezierpath_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vcubicbezierpath_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vellipticalarc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vellipticalarc.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vellipticalarc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vellipticalarc.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vellipticalarc_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vellipticalarc_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vgeometry.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vgeometry.qbs -------------------------------------------------------------------------------- /src/libs/vgeometry/vgeometrydef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vgeometrydef.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vgeometrydef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vgeometrydef.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vgobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vgobject.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vgobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vgobject.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vgobject_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vgobject_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vlayoutplacelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vlayoutplacelabel.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vlayoutplacelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vlayoutplacelabel.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vplacelabelitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vplacelabelitem.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vplacelabelitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vplacelabelitem.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vplacelabelitem_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vplacelabelitem_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vpointf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vpointf.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vpointf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vpointf.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vpointf_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vpointf_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vspline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vspline.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vspline.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vspline_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vspline_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vsplinepath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vsplinepath.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vsplinepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vsplinepath.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vsplinepath_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vsplinepath_p.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vsplinepoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vsplinepoint.cpp -------------------------------------------------------------------------------- /src/libs/vgeometry/vsplinepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vsplinepoint.h -------------------------------------------------------------------------------- /src/libs/vgeometry/vsplinepoint_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vgeometry/vsplinepoint_p.h -------------------------------------------------------------------------------- /src/libs/vhpgl/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vhpgl/stable.cpp -------------------------------------------------------------------------------- /src/libs/vhpgl/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vhpgl/stable.h -------------------------------------------------------------------------------- /src/libs/vhpgl/vhpgl.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vhpgl/vhpgl.qbs -------------------------------------------------------------------------------- /src/libs/vhpgl/vhpglengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vhpgl/vhpglengine.cpp -------------------------------------------------------------------------------- /src/libs/vhpgl/vhpglengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vhpgl/vhpglengine.h -------------------------------------------------------------------------------- /src/libs/vhpgl/vhpglpaintdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vhpgl/vhpglpaintdevice.cpp -------------------------------------------------------------------------------- /src/libs/vhpgl/vhpglpaintdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vhpgl/vhpglpaintdevice.h -------------------------------------------------------------------------------- /src/libs/vlayout/share/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/share/icons.qrc -------------------------------------------------------------------------------- /src/libs/vlayout/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/stable.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/stable.h -------------------------------------------------------------------------------- /src/libs/vlayout/vabstractpiece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vabstractpiece.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vabstractpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vabstractpiece.h -------------------------------------------------------------------------------- /src/libs/vlayout/vabstractpiece_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vabstractpiece_p.h -------------------------------------------------------------------------------- /src/libs/vlayout/vbank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vbank.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vbank.h -------------------------------------------------------------------------------- /src/libs/vlayout/vbestsquare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vbestsquare.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vbestsquare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vbestsquare.h -------------------------------------------------------------------------------- /src/libs/vlayout/vbestsquare_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vbestsquare_p.h -------------------------------------------------------------------------------- /src/libs/vlayout/vboundary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vboundary.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vboundary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vboundary.h -------------------------------------------------------------------------------- /src/libs/vlayout/vcontour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vcontour.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vcontour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vcontour.h -------------------------------------------------------------------------------- /src/libs/vlayout/vcontour_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vcontour_p.h -------------------------------------------------------------------------------- /src/libs/vlayout/vfoldline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vfoldline.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vfoldline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vfoldline.h -------------------------------------------------------------------------------- /src/libs/vlayout/vgraphicsfillitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vgraphicsfillitem.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vgraphicsfillitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vgraphicsfillitem.h -------------------------------------------------------------------------------- /src/libs/vlayout/vlayout.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayout.qbs -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutdef.h -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutexporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutexporter.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutexporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutexporter.h -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutgenerator.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutgenerator.h -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpaper.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpaper.h -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpaper_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpaper_p.h -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpiece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpiece.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpiece.h -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpiece_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpiece_p.h -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpiecepath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpiecepath.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpiecepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpiecepath.h -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpiecepath_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpiecepath_p.h -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpoint.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vlayoutpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vlayoutpoint.h -------------------------------------------------------------------------------- /src/libs/vlayout/vposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vposition.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vposition.h -------------------------------------------------------------------------------- /src/libs/vlayout/vposter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vposter.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vposter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vposter.h -------------------------------------------------------------------------------- /src/libs/vlayout/vprintlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vprintlayout.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vprintlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vprintlayout.h -------------------------------------------------------------------------------- /src/libs/vlayout/vrawlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vrawlayout.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vrawlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vrawlayout.h -------------------------------------------------------------------------------- /src/libs/vlayout/vrawsapoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vrawsapoint.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vrawsapoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vrawsapoint.h -------------------------------------------------------------------------------- /src/libs/vlayout/vsapoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vsapoint.h -------------------------------------------------------------------------------- /src/libs/vlayout/vtextmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vtextmanager.cpp -------------------------------------------------------------------------------- /src/libs/vlayout/vtextmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vlayout/vtextmanager.h -------------------------------------------------------------------------------- /src/libs/vmisc/appimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/appimage.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/appimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/appimage.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/cp949codetbl_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/cp949codetbl_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qbig5codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qbig5codec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qbig5codec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qbig5codec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qcodecmacros_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qcodecmacros_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qeucjpcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qeucjpcodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qeucjpcodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qeucjpcodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qeuckrcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qeuckrcodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qeuckrcodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qeuckrcodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qgb18030codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qgb18030codec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qgb18030codec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qgb18030codec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qiconvcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qiconvcodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qiconvcodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qiconvcodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qicucodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qicucodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qicucodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qicucodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qisciicodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qisciicodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qisciicodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qisciicodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qjiscodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qjiscodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qjiscodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qjiscodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qjpunicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qjpunicode.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qjpunicode_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qjpunicode_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qlatincodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qlatincodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qlatincodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qlatincodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qsimplecodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qsimplecodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qsimplecodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qsimplecodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qsjiscodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qsjiscodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qsjiscodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qsjiscodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qtextcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qtextcodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qtextcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qtextcodec.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qtextcodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qtextcodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qtsciicodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qtsciicodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qtsciicodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qtsciicodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qutfcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qutfcodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qutfcodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qutfcodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qwindowscodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qwindowscodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/codecs/qwindowscodec_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/codecs/qwindowscodec_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/commandoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/commandoptions.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/commandoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/commandoptions.h -------------------------------------------------------------------------------- /src/libs/vmisc/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/compatibility.h -------------------------------------------------------------------------------- /src/libs/vmisc/customevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/customevents.h -------------------------------------------------------------------------------- /src/libs/vmisc/debugbreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/debugbreak.h -------------------------------------------------------------------------------- /src/libs/vmisc/def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/def.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/def.h -------------------------------------------------------------------------------- /src/libs/vmisc/defglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/defglobal.h -------------------------------------------------------------------------------- /src/libs/vmisc/dialogs/dialogcredits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/dialogs/dialogcredits.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/dialogs/dialogcredits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/dialogs/dialogcredits.h -------------------------------------------------------------------------------- /src/libs/vmisc/dialogs/dialogcredits.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/dialogs/dialogcredits.ui -------------------------------------------------------------------------------- /src/libs/vmisc/dialogs/vshortcutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/dialogs/vshortcutdialog.h -------------------------------------------------------------------------------- /src/libs/vmisc/exception/vexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/exception/vexception.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/exception/vexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/exception/vexception.h -------------------------------------------------------------------------------- /src/libs/vmisc/fpm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/fpm/LICENSE -------------------------------------------------------------------------------- /src/libs/vmisc/fpm/fixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/fpm/fixed.hpp -------------------------------------------------------------------------------- /src/libs/vmisc/fpm/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/fpm/math.hpp -------------------------------------------------------------------------------- /src/libs/vmisc/lambdaconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/lambdaconstants.h -------------------------------------------------------------------------------- /src/libs/vmisc/literals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/literals.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/literals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/literals.h -------------------------------------------------------------------------------- /src/libs/vmisc/projectversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/projectversion.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/projectversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/projectversion.h -------------------------------------------------------------------------------- /src/libs/vmisc/qt_dispatch/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/qt_dispatch/LICENSE.txt -------------------------------------------------------------------------------- /src/libs/vmisc/qt_dispatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/qt_dispatch/README.md -------------------------------------------------------------------------------- /src/libs/vmisc/qt_dispatch/qt_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/qt_dispatch/qt_dispatch.h -------------------------------------------------------------------------------- /src/libs/vmisc/qxtcsvmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/qxtcsvmodel.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/qxtcsvmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/qxtcsvmodel.h -------------------------------------------------------------------------------- /src/libs/vmisc/share/resources/flags.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/share/resources/flags.qrc -------------------------------------------------------------------------------- /src/libs/vmisc/share/resources/icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/share/resources/icon.qrc -------------------------------------------------------------------------------- /src/libs/vmisc/share/resources/theme.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/share/resources/theme.qrc -------------------------------------------------------------------------------- /src/libs/vmisc/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/stable.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/stable.h -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/svgdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/svgdef.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/svgdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/svgdef.h -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/vsvgfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/vsvgfont.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/vsvgfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/vsvgfont.h -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/vsvgfont_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/vsvgfont_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/vsvgfontengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/vsvgfontengine.h -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/vsvgfontreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/vsvgfontreader.h -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/vsvgglyph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/vsvgglyph.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/vsvgglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/vsvgglyph.h -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/vsvgglyph_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/vsvgglyph_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/vsvghandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/vsvghandler.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/svgfont/vsvghandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/svgfont/vsvghandler.h -------------------------------------------------------------------------------- /src/libs/vmisc/testpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/testpath.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/testpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/testpath.h -------------------------------------------------------------------------------- /src/libs/vmisc/testvapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/testvapplication.h -------------------------------------------------------------------------------- /src/libs/vmisc/theme/macutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/macutils.h -------------------------------------------------------------------------------- /src/libs/vmisc/theme/macutils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/macutils.mm -------------------------------------------------------------------------------- /src/libs/vmisc/theme/themeDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/themeDef.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/theme/themeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/themeDef.h -------------------------------------------------------------------------------- /src/libs/vmisc/theme/vapplicationstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/vapplicationstyle.h -------------------------------------------------------------------------------- /src/libs/vmisc/theme/vscenestylesheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/vscenestylesheet.h -------------------------------------------------------------------------------- /src/libs/vmisc/theme/vstylesheetstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/vstylesheetstyle.h -------------------------------------------------------------------------------- /src/libs/vmisc/theme/vtheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/vtheme.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/theme/vtheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/vtheme.h -------------------------------------------------------------------------------- /src/libs/vmisc/theme/vtoolstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/vtoolstyle.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/theme/vtoolstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/theme/vtoolstyle.h -------------------------------------------------------------------------------- /src/libs/vmisc/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/typedef.h -------------------------------------------------------------------------------- /src/libs/vmisc/vabstractapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vabstractapplication.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/vabstractapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vabstractapplication.h -------------------------------------------------------------------------------- /src/libs/vmisc/vabstractvalapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vabstractvalapplication.h -------------------------------------------------------------------------------- /src/libs/vmisc/vcommonsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vcommonsettings.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/vcommonsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vcommonsettings.h -------------------------------------------------------------------------------- /src/libs/vmisc/vfontinstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vfontinstaller.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/vfontinstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vfontinstaller.h -------------------------------------------------------------------------------- /src/libs/vmisc/vlockguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vlockguard.h -------------------------------------------------------------------------------- /src/libs/vmisc/vmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vmath.h -------------------------------------------------------------------------------- /src/libs/vmisc/vmisc.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vmisc.qbs -------------------------------------------------------------------------------- /src/libs/vmisc/vmodifierkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vmodifierkey.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/vmodifierkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vmodifierkey.h -------------------------------------------------------------------------------- /src/libs/vmisc/vsysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vsysexits.h -------------------------------------------------------------------------------- /src/libs/vmisc/vtablesearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vtablesearch.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/vtablesearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vtablesearch.h -------------------------------------------------------------------------------- /src/libs/vmisc/vtextcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vtextcodec.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/vtextcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vtextcodec.h -------------------------------------------------------------------------------- /src/libs/vmisc/vtextstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vtextstream.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/vtextstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vtextstream.h -------------------------------------------------------------------------------- /src/libs/vmisc/vtextstream_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vtextstream_p.h -------------------------------------------------------------------------------- /src/libs/vmisc/vtranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vtranslator.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/vtranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vtranslator.h -------------------------------------------------------------------------------- /src/libs/vmisc/vvalentinasettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vvalentinasettings.cpp -------------------------------------------------------------------------------- /src/libs/vmisc/vvalentinasettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vmisc/vvalentinasettings.h -------------------------------------------------------------------------------- /src/libs/vobj/delaunay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vobj/delaunay.cpp -------------------------------------------------------------------------------- /src/libs/vobj/delaunay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vobj/delaunay.h -------------------------------------------------------------------------------- /src/libs/vobj/predicates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vobj/predicates.cpp -------------------------------------------------------------------------------- /src/libs/vobj/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vobj/stable.cpp -------------------------------------------------------------------------------- /src/libs/vobj/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vobj/stable.h -------------------------------------------------------------------------------- /src/libs/vobj/vobj.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vobj/vobj.qbs -------------------------------------------------------------------------------- /src/libs/vobj/vobjengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vobj/vobjengine.cpp -------------------------------------------------------------------------------- /src/libs/vobj/vobjengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vobj/vobjengine.h -------------------------------------------------------------------------------- /src/libs/vobj/vobjpaintdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vobj/vobjpaintdevice.cpp -------------------------------------------------------------------------------- /src/libs/vobj/vobjpaintdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vobj/vobjpaintdevice.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/calculator.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/calculator.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/stable.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/stable.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/testpassmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/testpassmark.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/testpassmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/testpassmark.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vcontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vcontainer.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/vcontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vcontainer.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vformula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vformula.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/vformula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vformula.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vformula_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vformula_p.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vnodedetail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vnodedetail.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/vnodedetail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vnodedetail.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vnodedetail_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vnodedetail_p.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpassmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpassmark.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpassmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpassmark.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpatterndb.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpatterndb.qbs -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpiece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpiece.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpiece.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpiece_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpiece_p.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpiecenode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpiecenode.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpiecenode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpiecenode.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpiecenode_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpiecenode_p.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpiecepath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpiecepath.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpiecepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpiecepath.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vpiecepath_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vpiecepath_p.h -------------------------------------------------------------------------------- /src/libs/vpatterndb/vtranslatevars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vtranslatevars.cpp -------------------------------------------------------------------------------- /src/libs/vpatterndb/vtranslatevars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpatterndb/vtranslatevars.h -------------------------------------------------------------------------------- /src/libs/vpropertyexplorer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpropertyexplorer/LICENSE.txt -------------------------------------------------------------------------------- /src/libs/vpropertyexplorer/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpropertyexplorer/stable.cpp -------------------------------------------------------------------------------- /src/libs/vpropertyexplorer/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpropertyexplorer/stable.h -------------------------------------------------------------------------------- /src/libs/vpropertyexplorer/vproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vpropertyexplorer/vproperties.h -------------------------------------------------------------------------------- /src/libs/vtest/abstracttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtest/abstracttest.cpp -------------------------------------------------------------------------------- /src/libs/vtest/abstracttest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtest/abstracttest.h -------------------------------------------------------------------------------- /src/libs/vtest/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtest/stable.cpp -------------------------------------------------------------------------------- /src/libs/vtest/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtest/stable.h -------------------------------------------------------------------------------- /src/libs/vtest/vtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtest/vtest.cpp -------------------------------------------------------------------------------- /src/libs/vtest/vtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtest/vtest.h -------------------------------------------------------------------------------- /src/libs/vtest/vtest.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtest/vtest.qbs -------------------------------------------------------------------------------- /src/libs/vtools/dialogs/tooldialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtools/dialogs/tooldialogs.h -------------------------------------------------------------------------------- /src/libs/vtools/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtools/stable.cpp -------------------------------------------------------------------------------- /src/libs/vtools/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtools/stable.h -------------------------------------------------------------------------------- /src/libs/vtools/tools/toolsdef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtools/tools/toolsdef.cpp -------------------------------------------------------------------------------- /src/libs/vtools/tools/toolsdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtools/tools/toolsdef.h -------------------------------------------------------------------------------- /src/libs/vtools/tools/vabstracttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtools/tools/vabstracttool.h -------------------------------------------------------------------------------- /src/libs/vtools/tools/vdatatool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtools/tools/vdatatool.cpp -------------------------------------------------------------------------------- /src/libs/vtools/tools/vdatatool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtools/tools/vdatatool.h -------------------------------------------------------------------------------- /src/libs/vtools/vtools.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vtools/vtools.qbs -------------------------------------------------------------------------------- /src/libs/vwidgets/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/global.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/global.h -------------------------------------------------------------------------------- /src/libs/vwidgets/scalesceneitems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/scalesceneitems.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/scalesceneitems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/scalesceneitems.h -------------------------------------------------------------------------------- /src/libs/vwidgets/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/stable.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/stable.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vabstractsimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vabstractsimple.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vabstractsimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vabstractsimple.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vcomboboxdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vcomboboxdelegate.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vcurvepathitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vcurvepathitem.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vcurvepathitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vcurvepathitem.h -------------------------------------------------------------------------------- /src/libs/vwidgets/velidedlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/velidedlabel.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/velidedlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/velidedlabel.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vgrainlineitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vgrainlineitem.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vgrainlineitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vgrainlineitem.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vhighlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vhighlighter.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vhighlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vhighlighter.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vlineedit.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vlineedit.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vmaingraphicsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vmaingraphicsview.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vpiecegrainline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vpiecegrainline.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vpiecegrainline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vpiecegrainline.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vpiecegrainline_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vpiecegrainline_p.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vpieceitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vpieceitem.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vpieceitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vpieceitem.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vplaintextedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vplaintextedit.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vplaintextedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vplaintextedit.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vscenepoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vscenepoint.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vscenepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vscenepoint.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vsimplecurve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vsimplecurve.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vsimplecurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vsimplecurve.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vsimplepoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vsimplepoint.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vsimplepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vsimplepoint.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vsponsorcredits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vsponsorcredits.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vsponsorcredits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vsponsorcredits.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vtextgraphicsitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vtextgraphicsitem.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vtoolbuttonpopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vtoolbuttonpopup.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vwidgetpopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vwidgetpopup.cpp -------------------------------------------------------------------------------- /src/libs/vwidgets/vwidgetpopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vwidgetpopup.h -------------------------------------------------------------------------------- /src/libs/vwidgets/vwidgets.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/libs/vwidgets/vwidgets.qbs -------------------------------------------------------------------------------- /src/src.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/src.qbs -------------------------------------------------------------------------------- /src/test/CollectionTest/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/CollectionTest/stable.cpp -------------------------------------------------------------------------------- /src/test/CollectionTest/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/CollectionTest/stable.h -------------------------------------------------------------------------------- /src/test/CollectionTest/tst_tape/text.vit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/CollectionTest/tst_tape/text.vst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/CollectionTest/tst_valentina/text.val: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/ParserTest/ParserTest.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ParserTest/ParserTest.qbs -------------------------------------------------------------------------------- /src/test/ParserTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ParserTest/main.cpp -------------------------------------------------------------------------------- /src/test/ParserTest/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ParserTest/stable.cpp -------------------------------------------------------------------------------- /src/test/ParserTest/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ParserTest/stable.h -------------------------------------------------------------------------------- /src/test/TranslationsTest/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/TranslationsTest/stable.cpp -------------------------------------------------------------------------------- /src/test/TranslationsTest/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/TranslationsTest/stable.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/codecs/utf8.txt: -------------------------------------------------------------------------------- 1 | 𐀀􏿽 2 | -------------------------------------------------------------------------------- /src/test/ValentinaTest/stable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/stable.cpp -------------------------------------------------------------------------------- /src/test/ValentinaTest/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/stable.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_dxf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_dxf.cpp -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_dxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_dxf.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_misc.cpp -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_misc.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_readval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_readval.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_tape/text.vit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_tape/text.vst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_utf8.cpp -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_utf8.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_valentina/text.val: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_varc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_varc.cpp -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_varc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_varc.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_vgobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_vgobject.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_vpiece.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_vpiece.cpp -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_vpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_vpiece.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_vpointf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_vpointf.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_vposter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_vposter.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_vspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_vspline.h -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_vtheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_vtheme.cpp -------------------------------------------------------------------------------- /src/test/ValentinaTest/tst_vtheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/ValentinaTest/tst_vtheme.h -------------------------------------------------------------------------------- /src/test/test.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/src/test/test.qbs -------------------------------------------------------------------------------- /valentina.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/valentina.qbs -------------------------------------------------------------------------------- /winsetup.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dismine/valentina/HEAD/winsetup.qbs --------------------------------------------------------------------------------