├── .github ├── FUNDING.yml └── workflows │ ├── analyse.yaml │ ├── build-base.yaml │ ├── build.yaml │ ├── codeberg-mirror.yml │ └── lint.yaml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CLI ├── FetchToncoinTransactions.php ├── RebuildImagesCommand.php └── UpgradeCommand.php ├── CODE_OF_CONFLICT.md ├── COPYING ├── DBEntity.updated.php ├── Email ├── assets │ └── css │ │ └── foundation.css ├── change-email.eml.latte ├── hello.eml.latte ├── password-reset.eml.latte └── verify-email.eml.latte ├── README.md ├── README_RU.md ├── ServiceAPI ├── Apps.php ├── Groups.php ├── Handler.php ├── Mentions.php ├── Notes.php ├── Notifications.php ├── Polls.php ├── Service.php └── Wall.php ├── VKAPI ├── Exceptions │ └── APIErrorException.php ├── Handlers │ ├── Account.php │ ├── Audio.php │ ├── Board.php │ ├── Docs.php │ ├── Friends.php │ ├── Gifts.php │ ├── Groups.php │ ├── Likes.php │ ├── Messages.php │ ├── Newsfeed.php │ ├── Notes.php │ ├── Notifications.php │ ├── Ovk.php │ ├── Pay.php │ ├── Photos.php │ ├── Polls.php │ ├── Reports.php │ ├── Status.php │ ├── Users.php │ ├── Utils.php │ ├── VKAPIRequestHandler.php │ ├── Video.php │ └── Wall.php ├── README.md └── Structures │ ├── Conversation.php │ └── Message.php ├── Vagrantfile ├── Web ├── Events │ ├── ILPEmitable.php │ └── NewMessageEvent.php ├── Models │ ├── Entities │ │ ├── APIToken.php │ │ ├── Album.php │ │ ├── Alias.php │ │ ├── Application.php │ │ ├── Attachable.php │ │ ├── Audio.php │ │ ├── Ban.php │ │ ├── BannedLink.php │ │ ├── Club.php │ │ ├── Comment.php │ │ ├── Correspondence.php │ │ ├── Document.php │ │ ├── EmailChangeVerification.php │ │ ├── EmailVerification.php │ │ ├── Gift.php │ │ ├── GiftCategory.php │ │ ├── IP.php │ │ ├── Manager.php │ │ ├── Media.php │ │ ├── MediaCollection.php │ │ ├── Message.php │ │ ├── NoSpamLog.php │ │ ├── Note.php │ │ ├── Notification.php │ │ ├── Notifications │ │ │ ├── ClubModeratorNotification.php │ │ │ ├── CoinsTransferNotification.php │ │ │ ├── CommentNotification.php │ │ │ ├── FriendRemovalNotification.php │ │ │ ├── GiftNotification.php │ │ │ ├── LikeNotification.php │ │ │ ├── MentionNotification.php │ │ │ ├── NewSuggestedPostsNotification.php │ │ │ ├── Notification.php │ │ │ ├── PostAcceptedNotification.php │ │ │ ├── RatingUpNotification.php │ │ │ ├── RepostNotification.php │ │ │ └── WallPostNotification.php │ │ ├── PasswordReset.php │ │ ├── Photo.php │ │ ├── Playlist.php │ │ ├── Poll.php │ │ ├── Post.php │ │ ├── Postable.php │ │ ├── Report.php │ │ ├── SupportAgent.php │ │ ├── SupportAlias.php │ │ ├── Ticket.php │ │ ├── TicketComment.php │ │ ├── Topic.php │ │ ├── Traits │ │ │ ├── TAttachmentHost.php │ │ │ ├── TAudioStatuses.php │ │ │ ├── TBackDrops.php │ │ │ ├── TIgnorable.php │ │ │ ├── TOwnable.php │ │ │ ├── TRichText.php │ │ │ └── TSubscribable.php │ │ ├── User.php │ │ ├── UserInfoEntities │ │ │ └── AdditionalField.php │ │ ├── Video.php │ │ ├── VideoAlbum.php │ │ └── Voucher.php │ ├── Exceptions │ │ ├── AlreadyVotedException.php │ │ ├── InvalidOptionException.php │ │ ├── InvalidUserNameException.php │ │ ├── PollLockedException.php │ │ └── TooMuchOptionsException.php │ ├── Repositories │ │ ├── APITokens.php │ │ ├── Albums.php │ │ ├── Aliases.php │ │ ├── Applications.php │ │ ├── Audios.php │ │ ├── BannedLinks.php │ │ ├── Bans.php │ │ ├── ChandlerGroups.php │ │ ├── ChandlerUsers.php │ │ ├── Clubs.php │ │ ├── Comments.php │ │ ├── ContentSearchRepository.php │ │ ├── CurrentUser.php │ │ ├── Documents.php │ │ ├── EmailChangeVerifications.php │ │ ├── Faves.php │ │ ├── Gifts.php │ │ ├── IPs.php │ │ ├── Managers.php │ │ ├── Messages.php │ │ ├── NoSpamLogs.php │ │ ├── Notes.php │ │ ├── Notifications.php │ │ ├── Photos.php │ │ ├── Polls.php │ │ ├── Posts.php │ │ ├── Reports.php │ │ ├── Repository.php │ │ ├── Restores.php │ │ ├── SupportAgents.php │ │ ├── SupportAliases.php │ │ ├── TicketComments.php │ │ ├── Tickets.php │ │ ├── Topics.php │ │ ├── Users.php │ │ ├── Util │ │ │ └── EntityStream.php │ │ ├── Verifications.php │ │ ├── Videos.php │ │ └── Vouchers.php │ ├── RowModel.php │ ├── VideoDrivers │ │ ├── VideoDriver.php │ │ ├── YouTubeVideoDriver.php │ │ └── regex │ │ │ └── youtube.txt │ ├── files │ │ └── video │ │ │ ├── rendering.apng │ │ │ └── rendering.ogv │ ├── shell │ │ ├── processAudio.ps1 │ │ ├── processAudio.sh │ │ ├── processVideo.ps1 │ │ └── processVideo.sh │ └── sql │ │ ├── get-correspondencies-count.tsql │ │ ├── get-correspondencies.tsql │ │ ├── get-followers.tsql │ │ ├── get-friends.tsql │ │ ├── get-messages.tsql │ │ ├── get-nearest-posts.tsql │ │ ├── get-online-friends.tsql │ │ ├── get-requests.tsql │ │ ├── get-subscriptions-user.tsql │ │ ├── mysql-msg-fix.tsql │ │ ├── read-messages.tsql │ │ └── set-subscriptions-club.tsql ├── Presenters │ ├── AboutPresenter.php │ ├── AdminPresenter.php │ ├── AppsPresenter.php │ ├── AudioPresenter.php │ ├── AuthPresenter.php │ ├── AwayPresenter.php │ ├── BannedLinkPresenter.php │ ├── BlobPresenter.php │ ├── CommentPresenter.php │ ├── ContentSearchPresenter.php │ ├── DocumentsPresenter.php │ ├── GiftsPresenter.php │ ├── GroupPresenter.php │ ├── HelloPresenter.php │ ├── InternalAPIPresenter.php │ ├── MaintenancePresenter.php │ ├── MessengerPresenter.php │ ├── NoSpamPresenter.php │ ├── NotesPresenter.php │ ├── NotificationPresenter.php │ ├── OpenVKPresenter.php │ ├── PhotosPresenter.php │ ├── PollPresenter.php │ ├── ReportPresenter.php │ ├── SearchPresenter.php │ ├── SupportPresenter.php │ ├── ThemepacksPresenter.php │ ├── TopicsPresenter.php │ ├── UnknownTextRouteStrategyPresenter.php │ ├── UserPresenter.php │ ├── VKAPIPresenter.php │ ├── VideosPresenter.php │ ├── WallPresenter.php │ └── templates │ │ ├── @CanonicalListView.xml │ │ ├── @MilkshakeListView.xml │ │ ├── @banned.xml │ │ ├── @deactivated.xml │ │ ├── @email.xml │ │ ├── @error.xml │ │ ├── @layout.xml │ │ ├── @listView.xml │ │ ├── About │ │ ├── AboutInstance.xml │ │ ├── BB.xml │ │ ├── Help.xml │ │ ├── Index.xml │ │ ├── Invite.xml │ │ ├── Language.xml │ │ ├── Sandbox.xml │ │ ├── Tour.xml │ │ └── Version.xml │ │ ├── Admin │ │ ├── @layout.xml │ │ ├── BannedLink.xml │ │ ├── BannedLinks.xml │ │ ├── BansHistory.xml │ │ ├── ChandlerGroup.xml │ │ ├── ChandlerGroups.xml │ │ ├── Club.xml │ │ ├── Clubs.xml │ │ ├── EditMusic.xml │ │ ├── EditPlaylist.xml │ │ ├── Gift.xml │ │ ├── GiftCategories.xml │ │ ├── GiftCategory.xml │ │ ├── Gifts.xml │ │ ├── Index.xml │ │ ├── Logs.xml │ │ ├── Music.xml │ │ ├── User.xml │ │ ├── Users.xml │ │ ├── Voucher.xml │ │ └── Vouchers.xml │ │ ├── Apps │ │ ├── Edit.xml │ │ ├── List.xml │ │ └── Play.xml │ │ ├── Audio │ │ ├── ApiGetContext.xml │ │ ├── EditPlaylist.xml │ │ ├── Embed.xml │ │ ├── List.xml │ │ ├── NewPlaylist.xml │ │ ├── Playlist.xml │ │ ├── Upload.xml │ │ ├── bigplayer.xml │ │ ├── player.xml │ │ ├── playlistListView.xml │ │ └── tabs.xml │ │ ├── Auth │ │ ├── FinishRestoringPassword.xml │ │ ├── Login.xml │ │ ├── LoginSecondFactor.xml │ │ ├── Register.xml │ │ └── Restore.xml │ │ ├── Away │ │ └── View.xml │ │ ├── ContentSearch │ │ └── Index.xml │ │ ├── Documents │ │ ├── ApiGetContext.xml │ │ ├── List.xml │ │ ├── Page.xml │ │ ├── Upload.xml │ │ └── components │ │ │ ├── doc.xml │ │ │ └── image.xml │ │ ├── Gifts │ │ ├── Confirm.xml │ │ ├── Menu.xml │ │ ├── Pick.xml │ │ └── UserGifts.xml │ │ ├── Group │ │ ├── Admin.xml │ │ ├── Banned.xml │ │ ├── Create.xml │ │ ├── Edit.xml │ │ ├── EditBackdrop.xml │ │ ├── Followers.xml │ │ ├── Statistics.xml │ │ ├── Suggested.xml │ │ └── View.xml │ │ ├── Maintenance │ │ ├── All.xml │ │ └── Section.xml │ │ ├── Messenger │ │ ├── App.xml │ │ └── Index.xml │ │ ├── NoSpam │ │ ├── Index.xml │ │ ├── Tabs.xml │ │ └── Templates.xml │ │ ├── Notes │ │ ├── Create.xml │ │ ├── Edit.xml │ │ ├── List.xml │ │ ├── PreView.xml │ │ └── View.xml │ │ ├── Notification │ │ └── Feed.xml │ │ ├── Photos │ │ ├── Album.xml │ │ ├── AlbumList.xml │ │ ├── CreateAlbum.xml │ │ ├── EditAlbum.xml │ │ ├── EditPhoto.xml │ │ ├── Photo.xml │ │ ├── UnlinkPhoto.xml │ │ └── UploadPhoto.xml │ │ ├── Poll │ │ ├── Poll.xml │ │ ├── PollResults.xml │ │ └── Voters.xml │ │ ├── Report │ │ ├── List.xml │ │ ├── Tabs.xml │ │ ├── View.xml │ │ ├── ViewContent.xml │ │ └── content │ │ │ ├── app.xml │ │ │ ├── note.xml │ │ │ ├── photo.xml │ │ │ └── video.xml │ │ ├── Search │ │ └── Index.xml │ │ ├── Support │ │ ├── Agent.xml │ │ ├── AnswerTicket.xml │ │ ├── Index.xml │ │ ├── KnowledgeBaseArticle.xml │ │ ├── List.xml │ │ └── View.xml │ │ ├── Topics │ │ ├── Board.xml │ │ ├── Create.xml │ │ ├── Edit.xml │ │ └── Topic.xml │ │ ├── User │ │ ├── Edit.xml │ │ ├── Fave.xml │ │ ├── Friends.xml │ │ ├── Groups.xml │ │ ├── Settings.xml │ │ ├── TwoFactorAuthCodes.xml │ │ ├── TwoFactorAuthSettings.xml │ │ ├── VerifyPhone.xml │ │ ├── View.xml │ │ ├── banned.xml │ │ ├── blacklisted.xml │ │ ├── blacklisted_pov.xml │ │ ├── deactivated.xml │ │ ├── deleted.xml │ │ └── private.xml │ │ ├── VKAPI │ │ └── OAuthLogin.xml │ │ ├── Videos │ │ ├── Edit.xml │ │ ├── List.xml │ │ ├── Upload.xml │ │ └── View.xml │ │ ├── Wall │ │ ├── Feed.xml │ │ ├── HashtagFeed.xml │ │ ├── Likers.xml │ │ ├── Post.xml │ │ └── Wall.xml │ │ ├── _includeCSS.xml │ │ └── components │ │ ├── attachment.xml │ │ ├── comment.xml │ │ ├── comments.xml │ │ ├── content_error.xml │ │ ├── cookies.xml │ │ ├── error.xml │ │ ├── group.xml │ │ ├── nothing.xml │ │ ├── notifications │ │ ├── 0 │ │ │ └── _14_18_.xml │ │ ├── 1 │ │ │ └── _14_18_.xml │ │ ├── 2 │ │ │ ├── @default.xml │ │ │ ├── _10_18_.xml │ │ │ ├── _13_18_.xml │ │ │ ├── _14_18_.xml │ │ │ ├── _19_18_.xml │ │ │ └── _21_18_.xml │ │ ├── 3 │ │ │ └── _14_18_.xml │ │ ├── 4 │ │ │ ├── _18_10_.xml │ │ │ ├── _18_13_.xml │ │ │ ├── _18_14_.xml │ │ │ ├── _18_19_.xml │ │ │ ├── _18_21_.xml │ │ │ ├── _5_10_.xml │ │ │ ├── _5_13_.xml │ │ │ ├── _5_14_.xml │ │ │ ├── _5_19_.xml │ │ │ └── _5_21_.xml │ │ ├── 5 │ │ │ └── _5_18_.xml │ │ ├── 6 │ │ │ └── _14_5_.xml │ │ ├── 7 │ │ │ └── _18_5_.xml │ │ ├── 9601 │ │ │ └── _20_18_.xml │ │ ├── 9602 │ │ │ └── _18_18_.xml │ │ └── 9603 │ │ │ └── _18_18_.xml │ │ ├── paginator.xml │ │ ├── photo.xml │ │ ├── post.xml │ │ ├── post │ │ ├── microblogpost.xml │ │ └── oldpost.xml │ │ ├── textArea.xml │ │ ├── video.xml │ │ └── wall.xml ├── Themes │ ├── Exceptions │ │ ├── IncompatibleThemeException.php │ │ ├── MalformedManifestException.php │ │ └── NotThemeDirectoryException.php │ ├── Themepack.php │ └── Themepacks.php ├── Util │ ├── Bitmask.php │ ├── DateTime.php │ ├── Localizator.php │ ├── Makima │ │ ├── Makima.php │ │ ├── MasonryLayout.php │ │ └── ThumbTile.php │ ├── Shell │ │ ├── Exceptions │ │ │ ├── ShellUnavailableException.php │ │ │ └── UnknownCommandException.php │ │ └── Shell.php │ ├── Sms.php │ ├── Telegram.php │ └── Validator.php ├── di.yml ├── routes.yml └── static │ ├── audio │ ├── nomusic.mp3 │ └── notify.mp3 │ ├── css │ ├── audios.css │ ├── avatar-edit.css │ ├── avatar.1.css │ ├── avatar.2.css │ ├── bsdn.css │ ├── dialog.css │ ├── main.css │ ├── microblog.css │ ├── notifications.css │ ├── nsfw-posts.css │ ├── tour.css │ └── xmas.css │ ├── img │ ├── app_icons │ │ ├── openvk_legacy.png │ │ ├── openvk_refresh.png │ │ └── vk4me.png │ ├── app_icons_mini │ │ ├── android.svg │ │ ├── api.svg │ │ ├── iphone.svg │ │ ├── mobile.svg │ │ └── wphone.svg │ ├── arrows.png │ ├── audios_controls.png │ ├── backdrop-editor.gif │ ├── banned.jpg │ ├── bsdn │ │ ├── fullscreen.gif │ │ ├── fullscreen_hover.gif │ │ ├── pause.gif │ │ ├── play.png │ │ ├── repeat.gif │ │ ├── repeat_hover.gif │ │ ├── speaker.gif │ │ └── speaker_muted.gif │ ├── bullet.gif │ ├── camera_200.png │ ├── checkmark.png │ ├── checkmark_legacy.png │ ├── delete.svg │ ├── divider.png │ ├── docs_controls.png │ ├── edit.png │ ├── error.png │ ├── escargot.gif │ ├── explicit.svg │ ├── favicons │ │ ├── favicon24.png │ │ ├── favicon24_paused.png │ │ ├── favicon24_playing.png │ │ ├── favicon32.png │ │ ├── favicon64.png │ │ └── icon.psd │ ├── feedback.svg │ ├── flags │ │ ├── am.gif │ │ ├── bs.gif │ │ ├── bt.gif │ │ ├── bv.gif │ │ ├── bw.gif │ │ ├── by.gif │ │ ├── bz.gif │ │ ├── ca.gif │ │ ├── catalonia.gif │ │ ├── cc.gif │ │ ├── cd.gif │ │ ├── cf.gif │ │ ├── cg.gif │ │ ├── ch.gif │ │ ├── ci.gif │ │ ├── ck.gif │ │ ├── cl.gif │ │ ├── cm.gif │ │ ├── cn.gif │ │ ├── co.gif │ │ ├── cr.gif │ │ ├── cs.gif │ │ ├── cu.gif │ │ ├── cv.gif │ │ ├── cx.gif │ │ ├── cy.gif │ │ ├── cz.gif │ │ ├── de.gif │ │ ├── dj.gif │ │ ├── dk.gif │ │ ├── dm.gif │ │ ├── do.gif │ │ ├── dz.gif │ │ ├── ec.gif │ │ ├── ee.gif │ │ ├── eg.gif │ │ ├── eh.gif │ │ ├── england.gif │ │ ├── eo.gif │ │ ├── er.gif │ │ ├── es.gif │ │ ├── et.gif │ │ ├── europeanunion.gif │ │ ├── fam.gif │ │ ├── fi.gif │ │ ├── fj.gif │ │ ├── fk.gif │ │ ├── fm.gif │ │ ├── fo.gif │ │ ├── fr.gif │ │ ├── ga.gif │ │ ├── gb.gif │ │ ├── gd.gif │ │ ├── ge.gif │ │ ├── gf.gif │ │ ├── gh.gif │ │ ├── gi.gif │ │ ├── gl.gif │ │ ├── gm.gif │ │ ├── gn.gif │ │ ├── gp.gif │ │ ├── gq.gif │ │ ├── gr.gif │ │ ├── gs.gif │ │ ├── gt.gif │ │ ├── gu.gif │ │ ├── gw.gif │ │ ├── gy.gif │ │ ├── hk.gif │ │ ├── hm.gif │ │ ├── hn.gif │ │ ├── hr.gif │ │ ├── ht.gif │ │ ├── hu.gif │ │ ├── id.gif │ │ ├── ie.gif │ │ ├── il.gif │ │ ├── in.gif │ │ ├── io.gif │ │ ├── iq.gif │ │ ├── ir.gif │ │ ├── is.gif │ │ ├── it.gif │ │ ├── jm.gif │ │ ├── jo.gif │ │ ├── jp.gif │ │ ├── ke.gif │ │ ├── kg.gif │ │ ├── kh.gif │ │ ├── ki.gif │ │ ├── km.gif │ │ ├── kn.gif │ │ ├── kp.gif │ │ ├── kr.gif │ │ ├── kw.gif │ │ ├── ky.gif │ │ ├── kz.gif │ │ ├── la.gif │ │ ├── lb.gif │ │ ├── lc.gif │ │ ├── li.gif │ │ ├── lk.gif │ │ ├── lr.gif │ │ ├── ls.gif │ │ ├── lt.gif │ │ ├── lu.gif │ │ ├── lv.gif │ │ ├── ly.gif │ │ ├── ma.gif │ │ ├── mc.gif │ │ ├── md.gif │ │ ├── me.gif │ │ ├── mg.gif │ │ ├── mh.gif │ │ ├── mk.gif │ │ ├── ml.gif │ │ ├── mm.gif │ │ ├── mn.gif │ │ ├── mo.gif │ │ ├── mp.gif │ │ ├── mq.gif │ │ ├── mr.gif │ │ ├── ms.gif │ │ ├── mt.gif │ │ ├── mu.gif │ │ ├── mv.gif │ │ ├── mw.gif │ │ ├── mx.gif │ │ ├── my.gif │ │ ├── mz.gif │ │ ├── na.gif │ │ ├── nc.gif │ │ ├── ne.gif │ │ ├── nf.gif │ │ ├── ng.gif │ │ ├── ni.gif │ │ ├── nl.gif │ │ ├── no.gif │ │ ├── np.gif │ │ ├── nr.gif │ │ ├── nu.gif │ │ ├── nz.gif │ │ ├── om.gif │ │ ├── pa.gif │ │ ├── pe.gif │ │ ├── pf.gif │ │ ├── pg.gif │ │ ├── ph.gif │ │ ├── pk.gif │ │ ├── pl.gif │ │ ├── pm.gif │ │ ├── pn.gif │ │ ├── pr.gif │ │ ├── ps.gif │ │ ├── pt.gif │ │ ├── pw.gif │ │ ├── py.gif │ │ ├── qa.gif │ │ ├── re.gif │ │ ├── ro.gif │ │ ├── rs.gif │ │ ├── ru.gif │ │ ├── ru_old.gif │ │ ├── rw.gif │ │ ├── sa.gif │ │ ├── sb.gif │ │ ├── sc.gif │ │ ├── scotland.gif │ │ ├── sd.gif │ │ ├── se.gif │ │ ├── sg.gif │ │ ├── sh.gif │ │ ├── si.gif │ │ ├── sj.gif │ │ ├── sk.gif │ │ ├── sl.gif │ │ ├── sm.gif │ │ ├── sn.gif │ │ ├── so.gif │ │ ├── sr.gif │ │ ├── st.gif │ │ ├── su.gif │ │ ├── sv.gif │ │ ├── sy.gif │ │ ├── sz.gif │ │ ├── tc.gif │ │ ├── td.gif │ │ ├── tf.gif │ │ ├── tg.gif │ │ ├── th.gif │ │ ├── tj.gif │ │ ├── tk.gif │ │ ├── tl.gif │ │ ├── tm.gif │ │ ├── tn.gif │ │ ├── to.gif │ │ ├── tr.gif │ │ ├── tt.gif │ │ ├── tv.gif │ │ ├── tw.gif │ │ ├── tz.gif │ │ ├── ua.gif │ │ ├── udm.gif │ │ ├── ug.gif │ │ ├── um.gif │ │ ├── us.gif │ │ ├── uy.gif │ │ ├── uz.gif │ │ ├── va.gif │ │ ├── vc.gif │ │ ├── ve.gif │ │ ├── vg.gif │ │ ├── vi.gif │ │ ├── vn.gif │ │ ├── vu.gif │ │ ├── wales.gif │ │ ├── wf.gif │ │ ├── ws.gif │ │ ├── ye.gif │ │ ├── yt.gif │ │ ├── za.gif │ │ ├── zm.gif │ │ └── zw.gif │ ├── flex_arrow_open.gif │ ├── flex_arrow_open2.png │ ├── flex_arrow_shut.gif │ ├── friends.svg │ ├── groups.svg │ ├── header.png │ ├── header_custom.png │ ├── header_divider.gif │ ├── header_yellow.png │ ├── icon.ico │ ├── icon1.gif │ ├── icon2.gif │ ├── icon3.gif │ ├── icons │ │ ├── 1.svg │ │ ├── 10.svg │ │ ├── 11.svg │ │ ├── 12.svg │ │ ├── 13.svg │ │ ├── 14.svg │ │ ├── 2.svg │ │ ├── 3.svg │ │ ├── 4.svg │ │ ├── 5.svg │ │ ├── 6.svg │ │ ├── 7.svg │ │ ├── 8.svg │ │ └── 9.svg │ ├── input_clear.gif │ ├── libcss-ivinete │ │ ├── bar.jpg │ │ ├── headerg.gif │ │ ├── headmd.png │ │ └── ovkg.png │ ├── like.gif │ ├── loading_mini.gif │ ├── logo.png │ ├── logo.svg │ ├── logo_full.png │ ├── logo_full.svg │ ├── logo_legacy.png │ ├── logo_legacy_white.png │ ├── logo_shadow.png │ ├── logo_watermark.gif │ ├── messages.svg │ ├── note.gif │ ├── note_icon.png │ ├── oof.apng │ ├── oxygen-icons │ │ ├── 16x16 │ │ │ ├── actions │ │ │ │ ├── CVnamespace.png │ │ │ │ ├── Info-amarok.png │ │ │ │ ├── accept_time_event.png │ │ │ │ ├── acrobat.png │ │ │ │ ├── action-albumfolder-importdir2.png │ │ │ │ ├── activity-fork.png │ │ │ │ ├── actor.png │ │ │ │ ├── add-placemark.png │ │ │ │ ├── address-book-new.png │ │ │ │ ├── addressbook-details.png │ │ │ │ ├── adress-book-new.png │ │ │ │ ├── akonadi-phone-home.png │ │ │ │ ├── albumfolder-importdir.png │ │ │ │ ├── albumfolder-importimages.png │ │ │ │ ├── albumfolder-new.png │ │ │ │ ├── albumfolder-properties.png │ │ │ │ ├── albumfolder-user-trash.png │ │ │ │ ├── align-horizontal-bottom-out.png │ │ │ │ ├── align-horizontal-center.png │ │ │ │ ├── align-horizontal-left-out.png │ │ │ │ ├── align-horizontal-left-to-anchor.png │ │ │ │ ├── align-horizontal-left.png │ │ │ │ ├── align-horizontal-right-out.png │ │ │ │ ├── align-horizontal-right-to-anchor.png │ │ │ │ ├── align-horizontal-right.png │ │ │ │ ├── align-horizontal-top-out.png │ │ │ │ ├── align-vertical-bottom-out.png │ │ │ │ ├── align-vertical-bottom-to-anchor.png │ │ │ │ ├── align-vertical-bottom.png │ │ │ │ ├── align-vertical-center.png │ │ │ │ ├── align-vertical-top-out.png │ │ │ │ ├── align-vertical-top-to-anchor.png │ │ │ │ ├── align-vertical-top.png │ │ │ │ ├── amarok_artist.png │ │ │ │ ├── amarok_clock.png │ │ │ │ ├── amarok_lyrics.png │ │ │ │ ├── amarok_playcount.png │ │ │ │ ├── amarok_playlist.png │ │ │ │ ├── amarok_playlist_refresh.png │ │ │ │ ├── answer-correct.png │ │ │ │ ├── answer.png │ │ │ │ ├── application-exit.png │ │ │ │ ├── application-menu.png │ │ │ │ ├── applications-internet.png │ │ │ │ ├── appointment-new.png │ │ │ │ ├── archive-extract.png │ │ │ │ ├── archive-insert-directory.png │ │ │ │ ├── archive-insert.png │ │ │ │ ├── archive-remove.png │ │ │ │ ├── arrow-down-double.png │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-left-double.png │ │ │ │ ├── arrow-left.png │ │ │ │ ├── arrow-right-double.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── arrow-up-double.png │ │ │ │ ├── arrow-up.png │ │ │ │ ├── atmosphere.png │ │ │ │ ├── audio-on.png │ │ │ │ ├── bookmark-add-folder.png │ │ │ │ ├── bookmark-edit.png │ │ │ │ ├── bookmark-new-list.png │ │ │ │ ├── bookmark-new.png │ │ │ │ ├── bookmark-remove.png │ │ │ │ ├── bookmark-toolbar.png │ │ │ │ ├── bookmarks-organize.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── box.png │ │ │ │ ├── bqm-add.png │ │ │ │ ├── bqm-addqueue.png │ │ │ │ ├── bqm-commit.png │ │ │ │ ├── bqm-diff.png │ │ │ │ ├── bqm-remove.png │ │ │ │ ├── bqm-rmqueue.png │ │ │ │ ├── bqm-update.png │ │ │ │ ├── call-start.png │ │ │ │ ├── call-stop.png │ │ │ │ ├── cards-block.png │ │ │ │ ├── character-set.png │ │ │ │ ├── checkbox.png │ │ │ │ ├── checkmark.png │ │ │ │ ├── choice-round.png │ │ │ │ ├── chronometer-lap.png │ │ │ │ ├── chronometer-reset.png │ │ │ │ ├── chronometer-start.png │ │ │ │ ├── chronometer.png │ │ │ │ ├── class-or-package.png │ │ │ │ ├── class.png │ │ │ │ ├── clock-large.png │ │ │ │ ├── clock.png │ │ │ │ ├── code-block.png │ │ │ │ ├── code-class.png │ │ │ │ ├── code-context.png │ │ │ │ ├── code-function.png │ │ │ │ ├── code-typedef.png │ │ │ │ ├── code-variable.png │ │ │ │ ├── collection-rescan-amarok.png │ │ │ │ ├── color-fill.png │ │ │ │ ├── color-management.png │ │ │ │ ├── color-picker-black.png │ │ │ │ ├── color-picker-grey.png │ │ │ │ ├── color-picker-white.png │ │ │ │ ├── color-picker.png │ │ │ │ ├── colormanagement.png │ │ │ │ ├── component.png │ │ │ │ ├── configure-shortcuts.png │ │ │ │ ├── configure-toolbars.png │ │ │ │ ├── configure.png │ │ │ │ ├── contact-new.png │ │ │ │ ├── cursor-arrow.png │ │ │ │ ├── dashboard-show.png │ │ │ │ ├── datatype.png │ │ │ │ ├── debug-execute-from-cursor.png │ │ │ │ ├── debug-execute-to-cursor.png │ │ │ │ ├── debug-run-cursor.png │ │ │ │ ├── debug-run.png │ │ │ │ ├── debug-step-instruction.png │ │ │ │ ├── debug-step-into-instruction.png │ │ │ │ ├── debug-step-into.png │ │ │ │ ├── debug-step-out.png │ │ │ │ ├── debug-step-over.png │ │ │ │ ├── dialog-align-and-distribute.png │ │ │ │ ├── dialog-cancel.png │ │ │ │ ├── dialog-close.png │ │ │ │ ├── dialog-fill-and-stroke.png │ │ │ │ ├── dialog-filters.png │ │ │ │ ├── dialog-icon-preview.png │ │ │ │ ├── dialog-memory.png │ │ │ │ ├── dialog-object-properties.png │ │ │ │ ├── dialog-ok-apply.png │ │ │ │ ├── dialog-ok.png │ │ │ │ ├── dialog-transform.png │ │ │ │ ├── dirsync.png │ │ │ │ ├── distribute-horizontal-center.png │ │ │ │ ├── distribute-horizontal-equal.png │ │ │ │ ├── distribute-horizontal-gaps.png │ │ │ │ ├── distribute-horizontal-left.png │ │ │ │ ├── distribute-horizontal-margin.png │ │ │ │ ├── distribute-horizontal-page.png │ │ │ │ ├── distribute-horizontal-right.png │ │ │ │ ├── distribute-horizontal-x.png │ │ │ │ ├── distribute-horizontal.png │ │ │ │ ├── distribute-vertical-bottom.png │ │ │ │ ├── distribute-vertical-center.png │ │ │ │ ├── distribute-vertical-equal.png │ │ │ │ ├── distribute-vertical-gaps.png │ │ │ │ ├── distribute-vertical-margin.png │ │ │ │ ├── distribute-vertical-page.png │ │ │ │ ├── distribute-vertical-top.png │ │ │ │ ├── distribute-vertical-y.png │ │ │ │ ├── distribute-vertical.png │ │ │ │ ├── document-cleanup.png │ │ │ │ ├── document-close.png │ │ │ │ ├── document-decrypt.png │ │ │ │ ├── document-edit-decrypt-verify.png │ │ │ │ ├── document-edit-decrypt.png │ │ │ │ ├── document-edit-encrypt.png │ │ │ │ ├── document-edit-sign-encrypt.png │ │ │ │ ├── document-edit-sign.png │ │ │ │ ├── document-edit-verify.png │ │ │ │ ├── document-edit.png │ │ │ │ ├── document-encrypt.png │ │ │ │ ├── document-export-ocal.png │ │ │ │ ├── document-export-table.png │ │ │ │ ├── document-export.png │ │ │ │ ├── document-import-ocal.png │ │ │ │ ├── document-import.png │ │ │ │ ├── document-multiple.png │ │ │ │ ├── document-new-from-template.png │ │ │ │ ├── document-new.png │ │ │ │ ├── document-open-data.png │ │ │ │ ├── document-open-folder.png │ │ │ │ ├── document-open-recent.png │ │ │ │ ├── document-open-remote.png │ │ │ │ ├── document-open.png │ │ │ │ ├── document-preview-archive.png │ │ │ │ ├── document-preview.png │ │ │ │ ├── document-print-direct.png │ │ │ │ ├── document-print-frame.png │ │ │ │ ├── document-print-preview.png │ │ │ │ ├── document-print.png │ │ │ │ ├── document-properties.png │ │ │ │ ├── document-revert.png │ │ │ │ ├── document-save-all.png │ │ │ │ ├── document-save-as.png │ │ │ │ ├── document-save.png │ │ │ │ ├── document-share.png │ │ │ │ ├── document-sign.png │ │ │ │ ├── document-swap.png │ │ │ │ ├── documentation.png │ │ │ │ ├── documentinfo.png │ │ │ │ ├── download-amarok.png │ │ │ │ ├── download-later.png │ │ │ │ ├── download.png │ │ │ │ ├── draw-arrow-back.png │ │ │ │ ├── draw-arrow-down.png │ │ │ │ ├── draw-arrow-forward.png │ │ │ │ ├── draw-arrow-up.png │ │ │ │ ├── draw-bezier-curves.png │ │ │ │ ├── draw-brush.png │ │ │ │ ├── draw-circle.png │ │ │ │ ├── draw-cross.png │ │ │ │ ├── draw-donut.png │ │ │ │ ├── draw-ellipse.png │ │ │ │ ├── draw-eraser-delete-objects.png │ │ │ │ ├── draw-eraser.png │ │ │ │ ├── draw-freehand.png │ │ │ │ ├── draw-halfcircle1.png │ │ │ │ ├── draw-halfcircle2.png │ │ │ │ ├── draw-halfcircle3.png │ │ │ │ ├── draw-halfcircle4.png │ │ │ │ ├── draw-line.png │ │ │ │ ├── draw-path.png │ │ │ │ ├── draw-polygon.png │ │ │ │ ├── draw-polyline.png │ │ │ │ ├── draw-rectangle.png │ │ │ │ ├── draw-spiral.png │ │ │ │ ├── draw-square-inverted-corners.png │ │ │ │ ├── draw-star.png │ │ │ │ ├── draw-text.png │ │ │ │ ├── draw-triangle.png │ │ │ │ ├── draw-triangle1.png │ │ │ │ ├── draw-triangle2.png │ │ │ │ ├── draw-triangle3.png │ │ │ │ ├── draw-triangle4.png │ │ │ │ ├── edit-bomb.png │ │ │ │ ├── edit-clear-history.png │ │ │ │ ├── edit-clear-list.png │ │ │ │ ├── edit-clear-locationbar-ltr.png │ │ │ │ ├── edit-clear-locationbar-rtl.png │ │ │ │ ├── edit-clear.png │ │ │ │ ├── edit-copy.png │ │ │ │ ├── edit-cut.png │ │ │ │ ├── edit-delete-shred.png │ │ │ │ ├── edit-delete.png │ │ │ │ ├── edit-download.png │ │ │ │ ├── edit-duplicate.png │ │ │ │ ├── edit-entry.png │ │ │ │ ├── edit-find-mail.png │ │ │ │ ├── edit-find-project.png │ │ │ │ ├── edit-find-replace.png │ │ │ │ ├── edit-find-user.png │ │ │ │ ├── edit-find.png │ │ │ │ ├── edit-guides.png │ │ │ │ ├── edit-image-face-add.png │ │ │ │ ├── edit-image-face-detect.png │ │ │ │ ├── edit-image-face-recognize.png │ │ │ │ ├── edit-image-face-show.png │ │ │ │ ├── edit-link.png │ │ │ │ ├── edit-map.png │ │ │ │ ├── edit-node.png │ │ │ │ ├── edit-paste.png │ │ │ │ ├── edit-redo.png │ │ │ │ ├── edit-rename.png │ │ │ │ ├── edit-select-all.png │ │ │ │ ├── edit-select-none.png │ │ │ │ ├── edit-select.png │ │ │ │ ├── edit-table-cell-merge.png │ │ │ │ ├── edit-table-cell-split.png │ │ │ │ ├── edit-table-delete-column.png │ │ │ │ ├── edit-table-delete-row.png │ │ │ │ ├── edit-table-insert-column-left.png │ │ │ │ ├── edit-table-insert-column-right.png │ │ │ │ ├── edit-table-insert-row-above.png │ │ │ │ ├── edit-table-insert-row-below.png │ │ │ │ ├── edit-table-insert-row-under.png │ │ │ │ ├── edit-text-frame-update.png │ │ │ │ ├── edit-undo-history.png │ │ │ │ ├── edit-undo.png │ │ │ │ ├── editimage.png │ │ │ │ ├── editor.png │ │ │ │ ├── end_of_life.png │ │ │ │ ├── end_state.png │ │ │ │ ├── enum.png │ │ │ │ ├── error.png │ │ │ │ ├── exifinfo.png │ │ │ │ ├── feed-subscribe.png │ │ │ │ ├── file-zoom-in.png │ │ │ │ ├── file-zoom-out.png │ │ │ │ ├── filename-composer-amarok.png │ │ │ │ ├── filename-ignore-amarok.png │ │ │ │ ├── filename-last-played.png │ │ │ │ ├── filename-sample-rate.png │ │ │ │ ├── filename-year-amarok.png │ │ │ │ ├── fileview-preview.png │ │ │ │ ├── fill-color.png │ │ │ │ ├── flag-black.png │ │ │ │ ├── flag-blue.png │ │ │ │ ├── flag-green.png │ │ │ │ ├── flag-red.png │ │ │ │ ├── flag-yellow.png │ │ │ │ ├── flag.png │ │ │ │ ├── folder-new.png │ │ │ │ ├── folder-sync.png │ │ │ │ ├── followmouse.png │ │ │ │ ├── fork.png │ │ │ │ ├── format-add-node.png │ │ │ │ ├── format-break-node.png │ │ │ │ ├── format-connect-node.png │ │ │ │ ├── format-disconnect-node.png │ │ │ │ ├── format-fill-color.png │ │ │ │ ├── format-font-size-less.png │ │ │ │ ├── format-font-size-more.png │ │ │ │ ├── format-indent-less.png │ │ │ │ ├── format-indent-more.png │ │ │ │ ├── format-join-node.png │ │ │ │ ├── format-justify-center.png │ │ │ │ ├── format-justify-fill.png │ │ │ │ ├── format-justify-left.png │ │ │ │ ├── format-justify-right.png │ │ │ │ ├── format-line-spacing-double.png │ │ │ │ ├── format-line-spacing-normal.png │ │ │ │ ├── format-line-spacing-triple.png │ │ │ │ ├── format-list-ordered.png │ │ │ │ ├── format-list-unordered.png │ │ │ │ ├── format-remove-node.png │ │ │ │ ├── format-stroke-color.png │ │ │ │ ├── format-text-bold.png │ │ │ │ ├── format-text-color.png │ │ │ │ ├── format-text-direction-ltr.png │ │ │ │ ├── format-text-direction-rtl.png │ │ │ │ ├── format-text-italic.png │ │ │ │ ├── format-text-strikethrough.png │ │ │ │ ├── format-text-subscript.png │ │ │ │ ├── format-text-superscript.png │ │ │ │ ├── format-text-underline.png │ │ │ │ ├── games-achievements.png │ │ │ │ ├── games-config-background.png │ │ │ │ ├── games-config-board.png │ │ │ │ ├── games-config-custom.png │ │ │ │ ├── games-config-options.png │ │ │ │ ├── games-config-theme.png │ │ │ │ ├── games-config-tiles.png │ │ │ │ ├── games-difficult.png │ │ │ │ ├── games-endturn.png │ │ │ │ ├── games-highscores.png │ │ │ │ ├── games-hint.png │ │ │ │ ├── games-solve.png │ │ │ │ ├── geany-build.png │ │ │ │ ├── geany-close-all.png │ │ │ │ ├── geany-save-all.png │ │ │ │ ├── get-hot-new-stuff.png │ │ │ │ ├── globe.png │ │ │ │ ├── go-bottom.png │ │ │ │ ├── go-down-search.png │ │ │ │ ├── go-down.png │ │ │ │ ├── go-first-view-page.png │ │ │ │ ├── go-first-view.png │ │ │ │ ├── go-first.png │ │ │ │ ├── go-home-large.png │ │ │ │ ├── go-home.png │ │ │ │ ├── go-jump-declaration.png │ │ │ │ ├── go-jump-definition.png │ │ │ │ ├── go-jump-locationbar.png │ │ │ │ ├── go-jump-today.png │ │ │ │ ├── go-jump.png │ │ │ │ ├── go-last-view-page.png │ │ │ │ ├── go-last-view.png │ │ │ │ ├── go-last.png │ │ │ │ ├── go-next-context.png │ │ │ │ ├── go-next-use.png │ │ │ │ ├── go-next-view-page.png │ │ │ │ ├── go-next-view.png │ │ │ │ ├── go-next.png │ │ │ │ ├── go-parent-folder.png │ │ │ │ ├── go-previous-context.png │ │ │ │ ├── go-previous-use.png │ │ │ │ ├── go-previous-view-page.png │ │ │ │ ├── go-previous-view.png │ │ │ │ ├── go-previous.png │ │ │ │ ├── go-top.png │ │ │ │ ├── go-up-search.png │ │ │ │ ├── go-up.png │ │ │ │ ├── gpg.png │ │ │ │ ├── gpgsm.png │ │ │ │ ├── group-edit.png │ │ │ │ ├── group-new.png │ │ │ │ ├── gtk-add.png │ │ │ │ ├── gtk-apply.png │ │ │ │ ├── gtk-bold.png │ │ │ │ ├── gtk-cancel.png │ │ │ │ ├── gtk-cdrom.png │ │ │ │ ├── gtk-clear.png │ │ │ │ ├── gtk-close.png │ │ │ │ ├── gtk-color-picker.png │ │ │ │ ├── gtk-connect.png │ │ │ │ ├── gtk-disconnect.png │ │ │ │ ├── gtk-edit.png │ │ │ │ ├── gtk-execute.png │ │ │ │ ├── gtk-floppy.png │ │ │ │ ├── gtk-no.png │ │ │ │ ├── gtk-ok.png │ │ │ │ ├── gtk-properties.png │ │ │ │ ├── gtk-quit.png │ │ │ │ ├── gtk-select-color.png │ │ │ │ ├── gtk-select-font.png │ │ │ │ ├── gtk-stop.png │ │ │ │ ├── gtk-undelete-ltr.png │ │ │ │ ├── gtk-undelete-rtl.png │ │ │ │ ├── gtk-yes.png │ │ │ │ ├── guides.png │ │ │ │ ├── help-about.png │ │ │ │ ├── help-contents.png │ │ │ │ ├── help-contextual.png │ │ │ │ ├── help-donate.png │ │ │ │ ├── help-feedback.png │ │ │ │ ├── help-hint.png │ │ │ │ ├── help-keybord-shortcuts.png │ │ │ │ ├── hint.png │ │ │ │ ├── identity.png │ │ │ │ ├── im-aim.png │ │ │ │ ├── im-ban-kick-user.png │ │ │ │ ├── im-ban-user.png │ │ │ │ ├── im-facebook.png │ │ │ │ ├── im-icq.png │ │ │ │ ├── im-identi.ca.png │ │ │ │ ├── im-invisible-user.png │ │ │ │ ├── im-irc.png │ │ │ │ ├── im-jabber.png │ │ │ │ ├── im-kick-user.png │ │ │ │ ├── im-msn.png │ │ │ │ ├── im-qq.png │ │ │ │ ├── im-skype.png │ │ │ │ ├── im-twitter.png │ │ │ │ ├── im-user-away.png │ │ │ │ ├── im-user-busy.png │ │ │ │ ├── im-user-offline.png │ │ │ │ ├── im-user.png │ │ │ │ ├── im-yahoo.png │ │ │ │ ├── initial_state.png │ │ │ │ ├── insert-button.png │ │ │ │ ├── insert-horizontal-rule.png │ │ │ │ ├── insert-image.png │ │ │ │ ├── insert-link.png │ │ │ │ ├── insert-table-row.png │ │ │ │ ├── insert-table.png │ │ │ │ ├── insert-text-frame.png │ │ │ │ ├── insert-text.png │ │ │ │ ├── interface.png │ │ │ │ ├── internet-amarok.png │ │ │ │ ├── irc-channel-active.png │ │ │ │ ├── irc-channel-inactive.png │ │ │ │ ├── irc-close-channel.png │ │ │ │ ├── irc-join-channel.png │ │ │ │ ├── irc-operator.png │ │ │ │ ├── irc-remove-operator.png │ │ │ │ ├── irc-unvoice.png │ │ │ │ ├── irc-voice.png │ │ │ │ ├── kdenlive-add-slide-clip.png │ │ │ │ ├── kdenlive-align-bottom.png │ │ │ │ ├── kdenlive-align-hor.png │ │ │ │ ├── kdenlive-align-left.png │ │ │ │ ├── kdenlive-align-right.png │ │ │ │ ├── kdenlive-align-top.png │ │ │ │ ├── kdenlive-align-vert.png │ │ │ │ ├── kdenlive-deleffect.png │ │ │ │ ├── kdenlive-down.png │ │ │ │ ├── kdenlive-select-rects.png │ │ │ │ ├── kdenlive-select-tool.png │ │ │ │ ├── kdenlive-show-audiothumb.png │ │ │ │ ├── kdenlive-show-video.png │ │ │ │ ├── kdenlive-snap.png │ │ │ │ ├── kdenlive-spacer-tool.png │ │ │ │ ├── kdenlive-unlock.png │ │ │ │ ├── kdenlive-up.png │ │ │ │ ├── key-enter.png │ │ │ │ ├── kmix-master.png │ │ │ │ ├── knotes_alarm.png │ │ │ │ ├── knotes_date.png │ │ │ │ ├── knotes_delete.png │ │ │ │ ├── kontes_close.png │ │ │ │ ├── kr_jumpback.png │ │ │ │ ├── kr_setjumpback.png │ │ │ │ ├── kt-bandwidth-scheduler.png │ │ │ │ ├── kt-change-tracker.png │ │ │ │ ├── kt-check-data.png │ │ │ │ ├── kt-info-widget.png │ │ │ │ ├── kt-pause.png │ │ │ │ ├── kt-remove.png │ │ │ │ ├── kt-restore-defaults.png │ │ │ │ ├── kt-show-statusbar.png │ │ │ │ ├── kt-start.png │ │ │ │ ├── kt-stop.png │ │ │ │ ├── ktnef_extract_to.png │ │ │ │ ├── labplot-auto-scale-all.png │ │ │ │ ├── labplot-auto-scale-x.png │ │ │ │ ├── labplot-auto-scale-y.png │ │ │ │ ├── labplot-cursor-arrow.png │ │ │ │ ├── labplot-transform-move.png │ │ │ │ ├── layer-rename.png │ │ │ │ ├── layer-visible-off.png │ │ │ │ ├── layer-visible-on.png │ │ │ │ ├── lighttable.png │ │ │ │ ├── lighttableadd.png │ │ │ │ ├── list-add-font.png │ │ │ │ ├── list-add-user.png │ │ │ │ ├── list-add.png │ │ │ │ ├── list-remove-user.png │ │ │ │ ├── list-remove.png │ │ │ │ ├── list-resource-add.png │ │ │ │ ├── mail-encrypted-full.png │ │ │ │ ├── mail-encrypted-part.png │ │ │ │ ├── mail-encrypted.png │ │ │ │ ├── mail-flag.png │ │ │ │ ├── mail-forward.png │ │ │ │ ├── mail-forwarded-replied.png │ │ │ │ ├── mail-forwarded.png │ │ │ │ ├── mail-invitation.png │ │ │ │ ├── mail-mark-important.png │ │ │ │ ├── mail-mark-junk.png │ │ │ │ ├── mail-mark-notjunk.png │ │ │ │ ├── mail-mark-read.png │ │ │ │ ├── mail-mark-unread-new.png │ │ │ │ ├── mail-mark-unread.png │ │ │ │ ├── mail-meeting-request-reply.png │ │ │ │ ├── mail-message-new-list.png │ │ │ │ ├── mail-message-new.png │ │ │ │ ├── mail-queue.png │ │ │ │ ├── mail-receive.png │ │ │ │ ├── mail-replied.png │ │ │ │ ├── mail-reply-all.png │ │ │ │ ├── mail-reply-custom-all.png │ │ │ │ ├── mail-reply-custom.png │ │ │ │ ├── mail-reply-list.png │ │ │ │ ├── mail-reply-sender.png │ │ │ │ ├── mail-send.png │ │ │ │ ├── mail-signature-unknown.png │ │ │ │ ├── mail-signed-full.png │ │ │ │ ├── mail-signed-fully.png │ │ │ │ ├── mail-signed-part.png │ │ │ │ ├── mail-signed-verified.png │ │ │ │ ├── mail-signed.png │ │ │ │ ├── mail-tagged.png │ │ │ │ ├── measure.png │ │ │ │ ├── media-eject.png │ │ │ │ ├── media-playback-pause.png │ │ │ │ ├── media-playback-start.png │ │ │ │ ├── media-playback-stop.png │ │ │ │ ├── media-playlist-repeat-amarok.png │ │ │ │ ├── media-playlist-repeat.png │ │ │ │ ├── media-playlist-shuffle.png │ │ │ │ ├── media-record.png │ │ │ │ ├── media-seek-backward.png │ │ │ │ ├── media-seek-forward.png │ │ │ │ ├── media-skip-backward.png │ │ │ │ ├── media-skip-forward.png │ │ │ │ ├── media-standard-track-progression-amarok.png │ │ │ │ ├── media-track-add-amarok.png │ │ │ │ ├── media-track-edit-amarok.png │ │ │ │ ├── media-track-remove-amarok.png │ │ │ │ ├── meeting-attending-tentative.png │ │ │ │ ├── meeting-attending.png │ │ │ │ ├── meeting-participant-no-response.png │ │ │ │ ├── meeting-participant-request-response.png │ │ │ │ ├── milestone.png │ │ │ │ ├── network-connect.png │ │ │ │ ├── network-disconnect.png │ │ │ │ ├── new-audio-alarm.png │ │ │ │ ├── new-command-alarm.png │ │ │ │ ├── news-subscribe.png │ │ │ │ ├── news-unsubscribe.png │ │ │ │ ├── node-add.png │ │ │ │ ├── node-break.png │ │ │ │ ├── node-delete-segment.png │ │ │ │ ├── node-delete.png │ │ │ │ ├── node-join-segment.png │ │ │ │ ├── node-join.png │ │ │ │ ├── note.png │ │ │ │ ├── object-align-horizontal-center-calligra.png │ │ │ │ ├── object-align-horizontal-left-calligra.png │ │ │ │ ├── object-align-horizontal-right-calligra.png │ │ │ │ ├── object-align-vertical-bottom-calligra.png │ │ │ │ ├── object-align-vertical-bottom-top-calligra.png │ │ │ │ ├── object-align-vertical-center-calligra.png │ │ │ │ ├── object-align-vertical-top-calligra.png │ │ │ │ ├── object-flip-horizontal.png │ │ │ │ ├── object-flip-vertical.png │ │ │ │ ├── object-group-calligra.png │ │ │ │ ├── object-group.png │ │ │ │ ├── object-hidden.png │ │ │ │ ├── object-order-back-calligra.png │ │ │ │ ├── object-order-back.png │ │ │ │ ├── object-order-front-calligra.png │ │ │ │ ├── object-order-front.png │ │ │ │ ├── object-order-lower-calligra.png │ │ │ │ ├── object-order-lower.png │ │ │ │ ├── object-order-raise-calligra.png │ │ │ │ ├── object-order-raise.png │ │ │ │ ├── object-rotate-left.png │ │ │ │ ├── object-rotate-right.png │ │ │ │ ├── object-ungroup-calligra.png │ │ │ │ ├── object-ungroup.png │ │ │ │ ├── object-unlocked.png │ │ │ │ ├── object-visible.png │ │ │ │ ├── object.png │ │ │ │ ├── object_node.png │ │ │ │ ├── office-chart-area-focus-peak-node.png │ │ │ │ ├── office-chart-area-percentage.png │ │ │ │ ├── office-chart-area-stacked.png │ │ │ │ ├── office-chart-area.png │ │ │ │ ├── office-chart-bar-percentage.png │ │ │ │ ├── office-chart-bar-stacked.png │ │ │ │ ├── office-chart-bar.png │ │ │ │ ├── office-chart-line-percentage.png │ │ │ │ ├── office-chart-line-stacked.png │ │ │ │ ├── office-chart-line.png │ │ │ │ ├── office-chart-pie.png │ │ │ │ ├── office-chart-polar-stacked.png │ │ │ │ ├── office-chart-polar.png │ │ │ │ ├── office-chart-ring.png │ │ │ │ ├── office-chart-scatter.png │ │ │ │ ├── open-for-editing.png │ │ │ │ ├── package.png │ │ │ │ ├── page-2sides.png │ │ │ │ ├── page-3sides.png │ │ │ │ ├── page-4sides.png │ │ │ │ ├── page-simple.png │ │ │ │ ├── page-zoom.png │ │ │ │ ├── path-mode-bezier.png │ │ │ │ ├── path-mode-spiro.png │ │ │ │ ├── pdf-annotations.png │ │ │ │ ├── photo.png │ │ │ │ ├── photos-amarok.png │ │ │ │ ├── player-time.png │ │ │ │ ├── player-volume.png │ │ │ │ ├── playlist-sort.png │ │ │ │ ├── plugins.png │ │ │ │ ├── polygon-add-nodes.png │ │ │ │ ├── polygon-merge-nodes.png │ │ │ │ ├── postalcode.png │ │ │ │ ├── practice-setup.png │ │ │ │ ├── practice-start.png │ │ │ │ ├── practice-stop.png │ │ │ │ ├── preferences-activities.png │ │ │ │ ├── preferences-media-playback-amarok.png │ │ │ │ ├── preflight-verifier.png │ │ │ │ ├── process-stop.png │ │ │ │ ├── project-development-close-all.png │ │ │ │ ├── project-development-close.png │ │ │ │ ├── project-development-new-template.png │ │ │ │ ├── project-development.png │ │ │ │ ├── project-open.png │ │ │ │ ├── quickopen-class.png │ │ │ │ ├── quickopen-file.png │ │ │ │ ├── quickopen-function.png │ │ │ │ ├── quickopen.png │ │ │ │ ├── quickview.png │ │ │ │ ├── rating-unrated.png │ │ │ │ ├── rating.png │ │ │ │ ├── ratiocrop.png │ │ │ │ ├── refactor.png │ │ │ │ ├── region.png │ │ │ │ ├── relationship.png │ │ │ │ ├── remove-amarok.png │ │ │ │ ├── remove.png │ │ │ │ ├── resource-calendar-child-insert.png │ │ │ │ ├── resource-calendar-child.png │ │ │ │ ├── resource-calendar-insert.png │ │ │ │ ├── resource-group-new.png │ │ │ │ ├── resource-group.png │ │ │ │ ├── roll.png │ │ │ │ ├── routeplanning.png │ │ │ │ ├── run-build-clean.png │ │ │ │ ├── run-build-configure.png │ │ │ │ ├── run-build-file.png │ │ │ │ ├── run-build-install-root.png │ │ │ │ ├── run-build-install.png │ │ │ │ ├── run-build-prune.png │ │ │ │ ├── run-build.png │ │ │ │ ├── run-clean.png │ │ │ │ ├── run-install.png │ │ │ │ ├── search.png │ │ │ │ ├── select-rectangular.png │ │ │ │ ├── selection-bottom.png │ │ │ │ ├── selection-lower.png │ │ │ │ ├── selection-make-bitmap-copy.png │ │ │ │ ├── selection-raise.png │ │ │ │ ├── selection-top.png │ │ │ │ ├── services.png │ │ │ │ ├── settings-configure.png │ │ │ │ ├── shallow-history.png │ │ │ │ ├── shear.png │ │ │ │ ├── show-dialogs.png │ │ │ │ ├── show-grid.png │ │ │ │ ├── show-menu.png │ │ │ │ ├── show-offline.png │ │ │ │ ├── shuffle.png │ │ │ │ ├── skg-chart-bubble.png │ │ │ │ ├── skrooge_credit_card.png │ │ │ │ ├── skrooge_less.png │ │ │ │ ├── skrooge_more.png │ │ │ │ ├── skrooge_much_less.png │ │ │ │ ├── skrooge_much_more.png │ │ │ │ ├── skrooge_type.png │ │ │ │ ├── smallclock.png │ │ │ │ ├── snap-extension.png │ │ │ │ ├── snap-guideline.png │ │ │ │ ├── snap-intersection.png │ │ │ │ ├── snap-node.png │ │ │ │ ├── snap-orthogonal.png │ │ │ │ ├── social.png │ │ │ │ ├── sort-name.png │ │ │ │ ├── sort_incr.png │ │ │ │ ├── speaker.png │ │ │ │ ├── specific-setup.png │ │ │ │ ├── sticky_zoom.png │ │ │ │ ├── story-editor.png │ │ │ │ ├── stroke-cap-bevel.png │ │ │ │ ├── stroke-cap-butt.png │ │ │ │ ├── stroke-cap-miter.png │ │ │ │ ├── stroke-cap-round.png │ │ │ │ ├── stroke-cap-square.png │ │ │ │ ├── stroke-join-bevel.png │ │ │ │ ├── stroke-join-miter.png │ │ │ │ ├── stroke-join-round.png │ │ │ │ ├── svn-commit.png │ │ │ │ ├── svn-update.png │ │ │ │ ├── system-lock-screen.png │ │ │ │ ├── system-log-out.png │ │ │ │ ├── system-reboot.png │ │ │ │ ├── system-run.png │ │ │ │ ├── system-search.png │ │ │ │ ├── system-shutdown.png │ │ │ │ ├── system-suspend-hibernate.png │ │ │ │ ├── system-suspend.png │ │ │ │ ├── system-switch-user.png │ │ │ │ ├── system-upgrade.png │ │ │ │ ├── tab-close-other.png │ │ │ │ ├── tab-close.png │ │ │ │ ├── tab-detach.png │ │ │ │ ├── tab-duplicate.png │ │ │ │ ├── tab-new-background.png │ │ │ │ ├── tab-new.png │ │ │ │ ├── tag-addressbook.png │ │ │ │ ├── tag-delete.png │ │ │ │ ├── tag-events.png │ │ │ │ ├── tag-folder.png │ │ │ │ ├── tag-people.png │ │ │ │ ├── tag-places.png │ │ │ │ ├── tag-properties.png │ │ │ │ ├── tag-recents.png │ │ │ │ ├── tag-reset.png │ │ │ │ ├── tag.png │ │ │ │ ├── text-convert-to-regular.png │ │ │ │ ├── text-field.png │ │ │ │ ├── text-frame-link.png │ │ │ │ ├── text-frame-unlink.png │ │ │ │ ├── text-speak.png │ │ │ │ ├── text_subscript.png │ │ │ │ ├── text_superscript.png │ │ │ │ ├── tool-animator.png │ │ │ │ ├── tool-measure.png │ │ │ │ ├── tool-node-editor.png │ │ │ │ ├── tool-pointer.png │ │ │ │ ├── tools-check-spelling.png │ │ │ │ ├── tools-media-optical-burn-image.png │ │ │ │ ├── tools-media-optical-burn.png │ │ │ │ ├── tools-media-optical-copy.png │ │ │ │ ├── tools-media-optical-erase.png │ │ │ │ ├── tools-media-optical-format.png │ │ │ │ ├── tools-report-bug.png │ │ │ │ ├── tools-rip-audio-cd.png │ │ │ │ ├── tools-rip-video-cd.png │ │ │ │ ├── tools-rip-video-dvd.png │ │ │ │ ├── tools-wizard.png │ │ │ │ ├── transform-crop-and-resize.png │ │ │ │ ├── transform-crop.png │ │ │ │ ├── transform-move.png │ │ │ │ ├── transform-rotate.png │ │ │ │ ├── transform-scale.png │ │ │ │ ├── transform-shear-down.png │ │ │ │ ├── transform-shear-left.png │ │ │ │ ├── transform-shear-right.png │ │ │ │ ├── transform-shear-up.png │ │ │ │ ├── transform-skew-horizontal.png │ │ │ │ ├── transform-skew-vertical.png │ │ │ │ ├── trash-empty.png │ │ │ │ ├── umbr-coll-message-asynchronous.png │ │ │ │ ├── umbr-coll-message-synchronous.png │ │ │ │ ├── umbr-message-asynchronous.png │ │ │ │ ├── umbr-message-found.png │ │ │ │ ├── umbr-message-lost.png │ │ │ │ ├── umbr-message-synchronous.png │ │ │ │ ├── umbrello_diagram_activity.png │ │ │ │ ├── umbrello_diagram_class.png │ │ │ │ ├── umbrello_diagram_component.png │ │ │ │ ├── umbrello_diagram_sequence.png │ │ │ │ ├── umbrello_diagram_state.png │ │ │ │ ├── umbrello_diagram_usecase.png │ │ │ │ ├── unlock.png │ │ │ │ ├── upcomingevents-amarok.png │ │ │ │ ├── upindicator.png │ │ │ │ ├── usecase.png │ │ │ │ ├── user-group-delete.png │ │ │ │ ├── user-group-new.png │ │ │ │ ├── user-group-properties.png │ │ │ │ ├── user-identity.png │ │ │ │ ├── user-properties.png │ │ │ │ ├── videoclip-amarok.png │ │ │ │ ├── view-bank.png │ │ │ │ ├── view-barcode-add.png │ │ │ │ ├── view-barcode.png │ │ │ │ ├── view-calendar-agenda.png │ │ │ │ ├── view-calendar-birthday.png │ │ │ │ ├── view-calendar-day.png │ │ │ │ ├── view-calendar-holiday.png │ │ │ │ ├── view-calendar-journal.png │ │ │ │ ├── view-calendar-list.png │ │ │ │ ├── view-calendar-month.png │ │ │ │ ├── view-calendar-special-occasion.png │ │ │ │ ├── view-calendar-tasks.png │ │ │ │ ├── view-calendar-time-spent.png │ │ │ │ ├── view-calendar-timeline.png │ │ │ │ ├── view-calendar-upcoming-days.png │ │ │ │ ├── view-calendar-upcoming-events.png │ │ │ │ ├── view-calendar-wedding-anniversary.png │ │ │ │ ├── view-calendar-week.png │ │ │ │ ├── view-calendar-whatsnext.png │ │ │ │ ├── view-calendar-workweek.png │ │ │ │ ├── view-calendar.png │ │ │ │ ├── view-certificate-add.png │ │ │ │ ├── view-certificate-export-secret.png │ │ │ │ ├── view-certificate-export-server.png │ │ │ │ ├── view-certificate-export.png │ │ │ │ ├── view-certificate-import.png │ │ │ │ ├── view-certificate-server-configure.png │ │ │ │ ├── view-certificate-sign.png │ │ │ │ ├── view-certificate.png │ │ │ │ ├── view-choose.png │ │ │ │ ├── view-close.png │ │ │ │ ├── view-conversation-balloon.png │ │ │ │ ├── view-file-columns.png │ │ │ │ ├── view-filter.png │ │ │ │ ├── view-financial-forecast.png │ │ │ │ ├── view-form-action.png │ │ │ │ ├── view-form-table.png │ │ │ │ ├── view-form.png │ │ │ │ ├── view-fullscreen.png │ │ │ │ ├── view-grid.png │ │ │ │ ├── view-group.png │ │ │ │ ├── view-history.png │ │ │ │ ├── view-ldap-resource.png │ │ │ │ ├── view-left-close.png │ │ │ │ ├── view-list-details.png │ │ │ │ ├── view-list-icons.png │ │ │ │ ├── view-list-text.png │ │ │ │ ├── view-list-tree.png │ │ │ │ ├── view-media-artist.png │ │ │ │ ├── view-media-equalizer.png │ │ │ │ ├── view-media-lyrics.png │ │ │ │ ├── view-media-playlist.png │ │ │ │ ├── view-media-visualization.png │ │ │ │ ├── view-multiple-objects.png │ │ │ │ ├── view-object-histogram-linear.png │ │ │ │ ├── view-object-histogram-logarithmic.png │ │ │ │ ├── view-pim-calendar.png │ │ │ │ ├── view-pim-contacts.png │ │ │ │ ├── view-pim-journal.png │ │ │ │ ├── view-pim-mail.png │ │ │ │ ├── view-pim-news.png │ │ │ │ ├── view-pim-notes.png │ │ │ │ ├── view-pim-summary.png │ │ │ │ ├── view-pim-tasks-pending.png │ │ │ │ ├── view-pim-tasks.png │ │ │ │ ├── view-presentation.png │ │ │ │ ├── view-preview.png │ │ │ │ ├── view-process-all-tree.png │ │ │ │ ├── view-process-all.png │ │ │ │ ├── view-process-own.png │ │ │ │ ├── view-process-system.png │ │ │ │ ├── view-process-tree.png │ │ │ │ ├── view-process-users.png │ │ │ │ ├── view-refresh.png │ │ │ │ ├── view-resource-calendar.png │ │ │ │ ├── view-restore.png │ │ │ │ ├── view-right-close.png │ │ │ │ ├── view-right-new.png │ │ │ │ ├── view-sidetree.png │ │ │ │ ├── view-sort-ascending.png │ │ │ │ ├── view-sort-descending.png │ │ │ │ ├── view-split-left-right.png │ │ │ │ ├── view-split-top-bottom.png │ │ │ │ ├── view-statistics.png │ │ │ │ ├── view-task-add.png │ │ │ │ ├── view-task-child-add.png │ │ │ │ ├── view-task-child.png │ │ │ │ ├── view-task.png │ │ │ │ ├── view-time-schedule-baselined-add.png │ │ │ │ ├── view-time-schedule-baselined-remove.png │ │ │ │ ├── view-time-schedule-baselined.png │ │ │ │ ├── view-time-schedule-calculus.png │ │ │ │ ├── view-time-schedule-child-insert.png │ │ │ │ ├── view-time-schedule-edit.png │ │ │ │ ├── view-time-schedule-insert.png │ │ │ │ ├── view-time-schedule.png │ │ │ │ ├── view-web-browser-dom-tree.png │ │ │ │ ├── viewimage.png │ │ │ │ ├── visibility.png │ │ │ │ ├── window-close.png │ │ │ │ ├── window-duplicate.png │ │ │ │ ├── window-new.png │ │ │ │ ├── window-next.png │ │ │ │ ├── window-previous.png │ │ │ │ ├── x-clementine-artist.png │ │ │ │ ├── x-clementine-shuffle.png │ │ │ │ ├── x-shape-image.png │ │ │ │ ├── x-shape-text.png │ │ │ │ ├── xml-node-duplicate.png │ │ │ │ ├── zoom-1-to-2.png │ │ │ │ ├── zoom-2-to-1.png │ │ │ │ ├── zoom-double-size.png │ │ │ │ ├── zoom-draw.png │ │ │ │ ├── zoom-fit-best.png │ │ │ │ ├── zoom-fit-drawing.png │ │ │ │ ├── zoom-fit-height.png │ │ │ │ ├── zoom-fit-page.png │ │ │ │ ├── zoom-fit-selection.png │ │ │ │ ├── zoom-fit-width.png │ │ │ │ ├── zoom-half-size.png │ │ │ │ ├── zoom-in-large.png │ │ │ │ ├── zoom-in.png │ │ │ │ ├── zoom-next.png │ │ │ │ ├── zoom-original.png │ │ │ │ ├── zoom-out.png │ │ │ │ ├── zoom-previous.png │ │ │ │ ├── zoom-select-fit.png │ │ │ │ ├── zoom-select-x.png │ │ │ │ ├── zoom-select-y.png │ │ │ │ ├── zoom-select.png │ │ │ │ └── zoom.png │ │ │ ├── animations │ │ │ │ ├── process-idle-kde.png │ │ │ │ └── process-working-kde.png │ │ │ ├── apps │ │ │ │ ├── Charm.png │ │ │ │ ├── accessories-calculator.png │ │ │ │ ├── accessories-character-map.png │ │ │ │ ├── accessories-dictionary.png │ │ │ │ ├── accessories-text-editor.png │ │ │ │ ├── acroread.png │ │ │ │ ├── akonadi.png │ │ │ │ ├── akregator.png │ │ │ │ ├── amarok.png │ │ │ │ ├── ark.png │ │ │ │ ├── artikulate.png │ │ │ │ ├── basket.png │ │ │ │ ├── braindump.png │ │ │ │ ├── calligraauthor.png │ │ │ │ ├── calligraflow.png │ │ │ │ ├── calligrakexi.png │ │ │ │ ├── calligrakrita.png │ │ │ │ ├── calligrasheets.png │ │ │ │ ├── calligrastage.png │ │ │ │ ├── calligrawords.png │ │ │ │ ├── clock.png │ │ │ │ ├── digikam.png │ │ │ │ ├── dragonplayer.png │ │ │ │ ├── esd.png │ │ │ │ ├── expoblending.png │ │ │ │ ├── fontforge.png │ │ │ │ ├── graphics-viewer-document.png │ │ │ │ ├── gwenview.png │ │ │ │ ├── help-browser.png │ │ │ │ ├── hwinfo.png │ │ │ │ ├── inkscape.png │ │ │ │ ├── internet-mail.png │ │ │ │ ├── internet-telephony.png │ │ │ │ ├── internet-web-browser.png │ │ │ │ ├── java.png │ │ │ │ ├── k3b.png │ │ │ │ ├── kaffeine.png │ │ │ │ ├── kalarm.png │ │ │ │ ├── kate.png │ │ │ │ ├── kblogger.png │ │ │ │ ├── kbruch.png │ │ │ │ ├── kbugbuster.png │ │ │ │ ├── kchart.png │ │ │ │ ├── kcolorchooser.png │ │ │ │ ├── kde-gtk-config.png │ │ │ │ ├── kde-windows.png │ │ │ │ ├── kde.png │ │ │ │ ├── kdeconnect.png │ │ │ │ ├── kdevelop.png │ │ │ │ ├── kdf.png │ │ │ │ ├── kfind.png │ │ │ │ ├── kformula.png │ │ │ │ ├── kgpg.png │ │ │ │ ├── kig.png │ │ │ │ ├── kivio.png │ │ │ │ ├── kjournal.png │ │ │ │ ├── klipper.png │ │ │ │ ├── kmag.png │ │ │ │ ├── kmail.png │ │ │ │ ├── kmix.png │ │ │ │ ├── kmplayer.png │ │ │ │ ├── knetattach.png │ │ │ │ ├── knewsticker.png │ │ │ │ ├── knotes.png │ │ │ │ ├── kolf.png │ │ │ │ ├── konqueror.png │ │ │ │ ├── kontact.png │ │ │ │ ├── konversation.png │ │ │ │ ├── kopete-offline.png │ │ │ │ ├── kopete.png │ │ │ │ ├── korgac.png │ │ │ │ ├── korganizer.png │ │ │ │ ├── kplato.png │ │ │ │ ├── kpresenter.png │ │ │ │ ├── krdc.png │ │ │ │ ├── krfb.png │ │ │ │ ├── ksnapshot.png │ │ │ │ ├── ksniffer.png │ │ │ │ ├── kspread.png │ │ │ │ ├── ksudoku.png │ │ │ │ ├── kthesaurus.png │ │ │ │ ├── ktip.png │ │ │ │ ├── ktorrent.png │ │ │ │ ├── kuickshow.png │ │ │ │ ├── kverbos.png │ │ │ │ ├── kwalletmanager.png │ │ │ │ ├── kword.png │ │ │ │ ├── lokalize.png │ │ │ │ ├── multimedia-volume-control.png │ │ │ │ ├── muondiscover.png │ │ │ │ ├── nepomuk.png │ │ │ │ ├── office-address-book.png │ │ │ │ ├── office-calendar.png │ │ │ │ ├── okteta.png │ │ │ │ ├── okular.png │ │ │ │ ├── oxygen.png │ │ │ │ ├── panorama.png │ │ │ │ ├── partitionmanager.png │ │ │ │ ├── picmi.png │ │ │ │ ├── plasma.png │ │ │ │ ├── plasmagik.png │ │ │ │ ├── preferences-contact-list.png │ │ │ │ ├── preferences-desktop-accessibility.png │ │ │ │ ├── preferences-desktop-color.png │ │ │ │ ├── preferences-desktop-cryptography.png │ │ │ │ ├── preferences-desktop-default-applications.png │ │ │ │ ├── preferences-desktop-display-color.png │ │ │ │ ├── preferences-desktop-display.png │ │ │ │ ├── preferences-desktop-filetype-association.png │ │ │ │ ├── preferences-desktop-font.png │ │ │ │ ├── preferences-desktop-gaming.png │ │ │ │ ├── preferences-desktop-icons.png │ │ │ │ ├── preferences-desktop-keyboard.png │ │ │ │ ├── preferences-desktop-launch-feedback.png │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ ├── preferences-desktop-mouse.png │ │ │ │ ├── preferences-desktop-notification-bell.png │ │ │ │ ├── preferences-desktop-notification.png │ │ │ │ ├── preferences-desktop-printer.png │ │ │ │ ├── preferences-desktop-screensaver.png │ │ │ │ ├── preferences-desktop-sound.png │ │ │ │ ├── preferences-desktop-text-to-speech.png │ │ │ │ ├── preferences-desktop-theme.png │ │ │ │ ├── preferences-desktop-user-password.png │ │ │ │ ├── preferences-desktop-user.png │ │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ │ ├── preferences-kcalc-constants.png │ │ │ │ ├── preferences-plugin-script.png │ │ │ │ ├── preferences-plugin.png │ │ │ │ ├── preferences-system-bluetooth-inactive.png │ │ │ │ ├── preferences-system-bluetooth.png │ │ │ │ ├── preferences-system-login.png │ │ │ │ ├── preferences-system-network-sharing.png │ │ │ │ ├── preferences-system-performance.png │ │ │ │ ├── preferences-system-power-management.png │ │ │ │ ├── preferences-system-session-services.png │ │ │ │ ├── preferences-system-time.png │ │ │ │ ├── preferences-system-windows-actions.png │ │ │ │ ├── preferences-system-windows-move.png │ │ │ │ ├── preferences-system-windows.png │ │ │ │ ├── preferences-web-browser-adblock.png │ │ │ │ ├── preferences-web-browser-cache.png │ │ │ │ ├── preferences-web-browser-cookies.png │ │ │ │ ├── preferences-web-browser-identification.png │ │ │ │ ├── preferences-web-browser-shortcuts.png │ │ │ │ ├── preferences-web-browser-stylesheets.png │ │ │ │ ├── qelectrotech.png │ │ │ │ ├── quassel.png │ │ │ │ ├── scribus.png │ │ │ │ ├── semn.png │ │ │ │ ├── showfoto.png │ │ │ │ ├── skrooge-black.png │ │ │ │ ├── skrooge-initial.png │ │ │ │ ├── skrooge.png │ │ │ │ ├── step.png │ │ │ │ ├── strigi.png │ │ │ │ ├── system-file-manager.png │ │ │ │ ├── system-software-update.png │ │ │ │ ├── system-users.png │ │ │ │ ├── tagua.png │ │ │ │ ├── telepathy-kde.png │ │ │ │ ├── utilities-desktop-extra.png │ │ │ │ ├── utilities-file-archiver.png │ │ │ │ ├── utilities-log-viewer.png │ │ │ │ ├── utilities-system-monitor.png │ │ │ │ ├── utilities-terminal.png │ │ │ │ ├── wine.png │ │ │ │ ├── xorg.png │ │ │ │ └── yakuake.png │ │ │ ├── categories │ │ │ │ ├── applications-accessories.png │ │ │ │ ├── applications-all.png │ │ │ │ ├── applications-development-translation.png │ │ │ │ ├── applications-development-web.png │ │ │ │ ├── applications-development.png │ │ │ │ ├── applications-education-language.png │ │ │ │ ├── applications-education-mathematics.png │ │ │ │ ├── applications-education-miscellaneous.png │ │ │ │ ├── applications-education-preschool.png │ │ │ │ ├── applications-education-school.png │ │ │ │ ├── applications-education-science.png │ │ │ │ ├── applications-education-university.png │ │ │ │ ├── applications-education.png │ │ │ │ ├── applications-engineering.png │ │ │ │ ├── applications-games.png │ │ │ │ ├── applications-graphics.png │ │ │ │ ├── applications-internet.png │ │ │ │ ├── applications-multimedia.png │ │ │ │ ├── applications-office.png │ │ │ │ ├── applications-other.png │ │ │ │ ├── applications-science.png │ │ │ │ ├── applications-system.png │ │ │ │ ├── applications-toys.png │ │ │ │ ├── applications-utilities.png │ │ │ │ ├── preferences-desktop-peripherals.png │ │ │ │ ├── preferences-desktop-personal.png │ │ │ │ ├── preferences-desktop.png │ │ │ │ ├── preferences-devices-printer.png │ │ │ │ ├── preferences-kde-connect.png │ │ │ │ ├── preferences-other.png │ │ │ │ ├── preferences-system-network.png │ │ │ │ ├── preferences-system.png │ │ │ │ └── system-help.png │ │ │ ├── devices │ │ │ │ ├── audio-card.png │ │ │ │ ├── audio-headphones.png │ │ │ │ ├── audio-headset.png │ │ │ │ ├── audio-input-line.png │ │ │ │ ├── audio-input-microphone.png │ │ │ │ ├── battery.png │ │ │ │ ├── camera-photo.png │ │ │ │ ├── camera-web.png │ │ │ │ ├── computer-laptop.png │ │ │ │ ├── computer.png │ │ │ │ ├── cpu.png │ │ │ │ ├── drive-harddisk.png │ │ │ │ ├── drive-optical.png │ │ │ │ ├── drive-removable-media-usb-pendrive.png │ │ │ │ ├── drive-removable-media-usb.png │ │ │ │ ├── drive-removable-media.png │ │ │ │ ├── hands-free.png │ │ │ │ ├── handset.png │ │ │ │ ├── headphone.png │ │ │ │ ├── headset.png │ │ │ │ ├── input-gaming.png │ │ │ │ ├── input-keyboard.png │ │ │ │ ├── input-mouse.png │ │ │ │ ├── input-tablet.png │ │ │ │ ├── internal.png │ │ │ │ ├── media-flash-memory-stick.png │ │ │ │ ├── media-flash-sd-mmc.png │ │ │ │ ├── media-flash-smart-media.png │ │ │ │ ├── media-flash.png │ │ │ │ ├── media-floppy.png │ │ │ │ ├── media-optical-audio.png │ │ │ │ ├── media-optical-blu-ray.png │ │ │ │ ├── media-optical-data.png │ │ │ │ ├── media-optical-dvd.png │ │ │ │ ├── media-optical-mixed-cd.png │ │ │ │ ├── media-optical-recordable.png │ │ │ │ ├── media-optical-video.png │ │ │ │ ├── media-optical.png │ │ │ │ ├── media-tape.png │ │ │ │ ├── microphone.png │ │ │ │ ├── modem.png │ │ │ │ ├── multimedia-player-apple-ipod.png │ │ │ │ ├── multimedia-player.png │ │ │ │ ├── network-wired.png │ │ │ │ ├── network-wireless.png │ │ │ │ ├── pda.png │ │ │ │ ├── phone-openmoko-freerunner.png │ │ │ │ ├── phone.png │ │ │ │ ├── portable.png │ │ │ │ ├── printer.png │ │ │ │ ├── scanner.png │ │ │ │ ├── secure-card.png │ │ │ │ ├── smartphone.png │ │ │ │ ├── speaker.png │ │ │ │ ├── tablet.png │ │ │ │ ├── tv.png │ │ │ │ ├── video-display.png │ │ │ │ ├── video-projector.png │ │ │ │ ├── video-television.png │ │ │ │ └── webcam.png │ │ │ ├── emblems │ │ │ │ ├── emblem-added.png │ │ │ │ ├── emblem-encrypted-locked.png │ │ │ │ ├── emblem-encrypted-unlocked.png │ │ │ │ ├── emblem-favorite.png │ │ │ │ ├── emblem-important.png │ │ │ │ ├── emblem-locked.png │ │ │ │ ├── emblem-mounted.png │ │ │ │ ├── emblem-new.png │ │ │ │ ├── emblem-remove.png │ │ │ │ ├── emblem-symbolic-link.png │ │ │ │ ├── emblem-unlocked.png │ │ │ │ ├── emblem-unmounted.png │ │ │ │ ├── gpg-key-trust-level-0.png │ │ │ │ ├── gpg-key-trust-level-1.png │ │ │ │ ├── gpg-key-trust-level-2.png │ │ │ │ ├── gpg-key-trust-level-3.png │ │ │ │ ├── gpg-key-trust-level-4.png │ │ │ │ ├── image-has-versions-open.png │ │ │ │ ├── image-has-versions.png │ │ │ │ ├── image-stack-open.png │ │ │ │ ├── image-stack.png │ │ │ │ ├── media-mount.png │ │ │ │ ├── vcs-added.png │ │ │ │ ├── vcs-conflicting.png │ │ │ │ ├── vcs-locally-modified-unstaged.png │ │ │ │ ├── vcs-locally-modified.png │ │ │ │ ├── vcs-normal.png │ │ │ │ ├── vcs-removed.png │ │ │ │ └── vcs-update-required.png │ │ │ ├── emotes │ │ │ │ ├── face-angel.png │ │ │ │ ├── face-embarrassed.png │ │ │ │ ├── face-kiss.png │ │ │ │ ├── face-laugh.png │ │ │ │ ├── face-plain.png │ │ │ │ ├── face-raspberry.png │ │ │ │ ├── face-sad.png │ │ │ │ ├── face-smile-big.png │ │ │ │ ├── face-smile.png │ │ │ │ ├── face-surprise.png │ │ │ │ ├── face-uncertain.png │ │ │ │ └── face-wink.png │ │ │ ├── mimetypes │ │ │ │ ├── application-atom+xml.png │ │ │ │ ├── application-epub+zip.png │ │ │ │ ├── application-illustrator.png │ │ │ │ ├── application-javascript.png │ │ │ │ ├── application-msword-template.png │ │ │ │ ├── application-msword.png │ │ │ │ ├── application-octet-stream.png │ │ │ │ ├── application-ogg.png │ │ │ │ ├── application-pdf.png │ │ │ │ ├── application-pgp-encrypted.png │ │ │ │ ├── application-pgp-keys.png │ │ │ │ ├── application-pgp-signature.png │ │ │ │ ├── application-pgp.png │ │ │ │ ├── application-pkcs7-mime.png │ │ │ │ ├── application-pkcs7-signature.png │ │ │ │ ├── application-postscript.png │ │ │ │ ├── application-relaxng.png │ │ │ │ ├── application-rss+xml.png │ │ │ │ ├── application-rtf.png │ │ │ │ ├── application-sxw.png │ │ │ │ ├── application-vnd-google-earth-kml.png │ │ │ │ ├── application-vnd-rar.png │ │ │ │ ├── application-vnd.iccprofile.png │ │ │ │ ├── application-vnd.ms-access.png │ │ │ │ ├── application-vnd.ms-excel.png │ │ │ │ ├── application-vnd.ms-powerpoint.png │ │ │ │ ├── application-vnd.oasis.opendocument.chart.png │ │ │ │ ├── application-vnd.oasis.opendocument.database.png │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.png │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.png │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.png │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.png │ │ │ │ ├── application-vnd.oasis.opendocument.formula.png │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.png │ │ │ │ ├── application-vnd.oasis.opendocument.image.png │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.png │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.png │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.png │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.png │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.png │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.png │ │ │ │ ├── application-vnd.oasis.opendocument.text.png │ │ │ │ ├── application-vnd.oasis.opendocument.web.template.png │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.png │ │ │ │ ├── application-vnd.rn-realmedia.png │ │ │ │ ├── application-vnd.scribus.png │ │ │ │ ├── application-vnd.stardivision.calc.png │ │ │ │ ├── application-vnd.stardivision.draw.png │ │ │ │ ├── application-vnd.stardivision.mail.png │ │ │ │ ├── application-vnd.stardivision.math.png │ │ │ │ ├── application-vnd.sun.xml.calc.png │ │ │ │ ├── application-vnd.sun.xml.calc.template.png │ │ │ │ ├── application-vnd.sun.xml.draw.png │ │ │ │ ├── application-vnd.sun.xml.draw.template.png │ │ │ │ ├── application-vnd.sun.xml.impress.png │ │ │ │ ├── application-vnd.sun.xml.impress.template.png │ │ │ │ ├── application-vnd.sun.xml.math.png │ │ │ │ ├── application-vnd.sun.xml.writer.global.png │ │ │ │ ├── application-vnd.sun.xml.writer.png │ │ │ │ ├── application-vnd.sun.xml.writer.template.png │ │ │ │ ├── application-vnd.wordperfect.png │ │ │ │ ├── application-x-7z-compressed.png │ │ │ │ ├── application-x-abiword.png │ │ │ │ ├── application-x-ace.png │ │ │ │ ├── application-x-applix-spreadsheet.png │ │ │ │ ├── application-x-applix-word.png │ │ │ │ ├── application-x-ar.png │ │ │ │ ├── application-x-arc.png │ │ │ │ ├── application-x-archive.png │ │ │ │ ├── application-x-arj.png │ │ │ │ ├── application-x-awk.png │ │ │ │ ├── application-x-bittorrent.png │ │ │ │ ├── application-x-blender.png │ │ │ │ ├── application-x-bzdvi.png │ │ │ │ ├── application-x-bzip-compressed-tar.png │ │ │ │ ├── application-x-bzip.png │ │ │ │ ├── application-x-cd-image.png │ │ │ │ ├── application-x-cda.png │ │ │ │ ├── application-x-chm.png │ │ │ │ ├── application-x-compress.png │ │ │ │ ├── application-x-compressed-tar.png │ │ │ │ ├── application-x-cpio.png │ │ │ │ ├── application-x-cue.png │ │ │ │ ├── application-x-deb.png │ │ │ │ ├── application-x-designer.png │ │ │ │ ├── application-x-desktop.png │ │ │ │ ├── application-x-egon.png │ │ │ │ ├── application-x-executable-script.png │ │ │ │ ├── application-x-executable.png │ │ │ │ ├── application-x-flash-video.png │ │ │ │ ├── application-x-font-afm.png │ │ │ │ ├── application-x-font-bdf.png │ │ │ │ ├── application-x-font-otf.png │ │ │ │ ├── application-x-font-pcf.png │ │ │ │ ├── application-x-font-snf.png │ │ │ │ ├── application-x-font-ttf.png │ │ │ │ ├── application-x-font-type1.png │ │ │ │ ├── application-x-gnumeric.png │ │ │ │ ├── application-x-gzdvi.png │ │ │ │ ├── application-x-gzip.png │ │ │ │ ├── application-x-gzpostscript.png │ │ │ │ ├── application-x-iso.png │ │ │ │ ├── application-x-it87.png │ │ │ │ ├── application-x-jar.png │ │ │ │ ├── application-x-java-applet.png │ │ │ │ ├── application-x-java-archive.png │ │ │ │ ├── application-x-java.png │ │ │ │ ├── application-x-javascript.png │ │ │ │ ├── application-x-k3b.png │ │ │ │ ├── application-x-kcsrc.png │ │ │ │ ├── application-x-kdenlivetitle.png │ │ │ │ ├── application-x-kexi-connectiondata.png │ │ │ │ ├── application-x-kexiproject-shortcut.png │ │ │ │ ├── application-x-kexiproject-sqlite.png │ │ │ │ ├── application-x-kexiproject-sqlite2.png │ │ │ │ ├── application-x-kexiproject-sqlite3.png │ │ │ │ ├── application-x-kformula.png │ │ │ │ ├── application-x-kgetlist.png │ │ │ │ ├── application-x-kontour.png │ │ │ │ ├── application-x-kplato.png │ │ │ │ ├── application-x-krita.png │ │ │ │ ├── application-x-kvtml.png │ │ │ │ ├── application-x-kword.png │ │ │ │ ├── application-x-lha.png │ │ │ │ ├── application-x-lyx.png │ │ │ │ ├── application-x-lzma-compressed-tar.png │ │ │ │ ├── application-x-lzop.png │ │ │ │ ├── application-x-m4.png │ │ │ │ ├── application-x-marble.png │ │ │ │ ├── application-x-mimearchive.png │ │ │ │ ├── application-x-mplayer2.png │ │ │ │ ├── application-x-ms-dos-executable.png │ │ │ │ ├── application-x-mswinurl.png │ │ │ │ ├── application-x-mswrite.png │ │ │ │ ├── application-x-nzb.png │ │ │ │ ├── application-x-object.png │ │ │ │ ├── application-x-pak.png │ │ │ │ ├── application-x-pem-key.png │ │ │ │ ├── application-x-perl.png │ │ │ │ ├── application-x-php.png │ │ │ │ ├── application-x-plasma.png │ │ │ │ ├── application-x-python-bytecode.png │ │ │ │ ├── application-x-qet-element.png │ │ │ │ ├── application-x-qet-project.png │ │ │ │ ├── application-x-quattropro.png │ │ │ │ ├── application-x-rar.png │ │ │ │ ├── application-x-raw-disk-image.png │ │ │ │ ├── application-x-rpm.png │ │ │ │ ├── application-x-ruby.png │ │ │ │ ├── application-x-sharedlib.png │ │ │ │ ├── application-x-shellscript.png │ │ │ │ ├── application-x-shockwave-flash.png │ │ │ │ ├── application-x-siag.png │ │ │ │ ├── application-x-sif.png │ │ │ │ ├── application-x-skg.png │ │ │ │ ├── application-x-skgc.png │ │ │ │ ├── application-x-smb-server.png │ │ │ │ ├── application-x-smb-workgroup.png │ │ │ │ ├── application-x-sqlite2.png │ │ │ │ ├── application-x-sqlite3.png │ │ │ │ ├── application-x-srt.png │ │ │ │ ├── application-x-srtrip.png │ │ │ │ ├── application-x-subrip.png │ │ │ │ ├── application-x-tar.png │ │ │ │ ├── application-x-tarz.png │ │ │ │ ├── application-x-tgif.png │ │ │ │ ├── application-x-trash.png │ │ │ │ ├── application-x-troff-man.png │ │ │ │ ├── application-x-tzo.png │ │ │ │ ├── application-x-wmf.png │ │ │ │ ├── application-x-zerosize.png │ │ │ │ ├── application-x-zoo.png │ │ │ │ ├── application-xhtml+xml.png │ │ │ │ ├── application-xml.png │ │ │ │ ├── application-xsd.png │ │ │ │ ├── application-xslt+xml.png │ │ │ │ ├── application-zip.png │ │ │ │ ├── audio-ac3.png │ │ │ │ ├── audio-midi.png │ │ │ │ ├── audio-mp2.png │ │ │ │ ├── audio-mp3.png │ │ │ │ ├── audio-mp4.png │ │ │ │ ├── audio-prs.sid.png │ │ │ │ ├── audio-vn.rn-realmedia.png │ │ │ │ ├── audio-vnd.rn-realvideo.png │ │ │ │ ├── audio-x-adpcm.png │ │ │ │ ├── audio-x-aiff.png │ │ │ │ ├── audio-x-flac+ogg.png │ │ │ │ ├── audio-x-flac.png │ │ │ │ ├── audio-x-generic.png │ │ │ │ ├── audio-x-monkey.png │ │ │ │ ├── audio-x-mp2.png │ │ │ │ ├── audio-x-mpeg.png │ │ │ │ ├── audio-x-speex+ogg.png │ │ │ │ ├── audio-x-wav.png │ │ │ │ ├── encrypted.png │ │ │ │ ├── fonts-package.png │ │ │ │ ├── image-bmp.png │ │ │ │ ├── image-gif.png │ │ │ │ ├── image-jpeg.png │ │ │ │ ├── image-jpeg2000.png │ │ │ │ ├── image-png.png │ │ │ │ ├── image-svg+xml-compressed.png │ │ │ │ ├── image-svg+xml.png │ │ │ │ ├── image-tiff.png │ │ │ │ ├── image-vnd.adobe.photoshop.png │ │ │ │ ├── image-vnd.dgn.png │ │ │ │ ├── image-vnd.dwg.png │ │ │ │ ├── image-x-adobe-dng.png │ │ │ │ ├── image-x-compressed-xcf.png │ │ │ │ ├── image-x-emf.png │ │ │ │ ├── image-x-eps.png │ │ │ │ ├── image-x-generic.png │ │ │ │ ├── image-x-krita.png │ │ │ │ ├── image-x-portable-bitmap.png │ │ │ │ ├── image-x-psd.png │ │ │ │ ├── image-x-psdimage-x-psd.png │ │ │ │ ├── image-x-svg+xml.png │ │ │ │ ├── image-x-tga.png │ │ │ │ ├── image-x-vnd.trolltech.qpicture.png │ │ │ │ ├── image-x-win-bitmap.png │ │ │ │ ├── image-x-win-bmp.png │ │ │ │ ├── image-x-wmf.png │ │ │ │ ├── image-x-xcf.png │ │ │ │ ├── image-x-xfig.png │ │ │ │ ├── inode-directory.png │ │ │ │ ├── libreoffice-database.png │ │ │ │ ├── libreoffice-drawing-template.png │ │ │ │ ├── libreoffice-drawing.png │ │ │ │ ├── libreoffice-extension.png │ │ │ │ ├── libreoffice-formula.png │ │ │ │ ├── libreoffice-master-document.png │ │ │ │ ├── libreoffice-oasis-database.png │ │ │ │ ├── libreoffice-oasis-drawing-template.png │ │ │ │ ├── libreoffice-oasis-drawing.png │ │ │ │ ├── libreoffice-oasis-formula.png │ │ │ │ ├── libreoffice-oasis-master-document.png │ │ │ │ ├── libreoffice-oasis-presentation-template.png │ │ │ │ ├── libreoffice-oasis-presentation.png │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.png │ │ │ │ ├── libreoffice-oasis-spreadsheet.png │ │ │ │ ├── libreoffice-oasis-text-template.png │ │ │ │ ├── libreoffice-oasis-text.png │ │ │ │ ├── libreoffice-oasis-web-template.png │ │ │ │ ├── libreoffice-presentation-template.png │ │ │ │ ├── libreoffice-presentation.png │ │ │ │ ├── libreoffice-spreadsheet-template.png │ │ │ │ ├── libreoffice-spreadsheet.png │ │ │ │ ├── libreoffice-text-template.png │ │ │ │ ├── libreoffice-text.png │ │ │ │ ├── mail-message-new-list.png │ │ │ │ ├── message-news.png │ │ │ │ ├── message-partial.png │ │ │ │ ├── message-rfc822.png │ │ │ │ ├── message-x-gnu-rmail.png │ │ │ │ ├── message.png │ │ │ │ ├── odf.png │ │ │ │ ├── package-x-generic.png │ │ │ │ ├── text-calendar.png │ │ │ │ ├── text-csharp.png │ │ │ │ ├── text-css.png │ │ │ │ ├── text-csv.png │ │ │ │ ├── text-directory.png │ │ │ │ ├── text-enriched.png │ │ │ │ ├── text-html.png │ │ │ │ ├── text-mathml.png │ │ │ │ ├── text-plain.png │ │ │ │ ├── text-rdf+xml.png │ │ │ │ ├── text-rdf.png │ │ │ │ ├── text-rtf.png │ │ │ │ ├── text-sgml.png │ │ │ │ ├── text-troff.png │ │ │ │ ├── text-vcalendar.png │ │ │ │ ├── text-vnd.abc.png │ │ │ │ ├── text-vnd.wap.wml.png │ │ │ │ ├── text-x-adasrc.png │ │ │ │ ├── text-x-authors.png │ │ │ │ ├── text-x-bibtex.png │ │ │ │ ├── text-x-c++hdr.png │ │ │ │ ├── text-x-c++src.png │ │ │ │ ├── text-x-changelog.png │ │ │ │ ├── text-x-chdr.png │ │ │ │ ├── text-x-cmake.png │ │ │ │ ├── text-x-copying.png │ │ │ │ ├── text-x-credits.png │ │ │ │ ├── text-x-csharp.png │ │ │ │ ├── text-x-csrc.png │ │ │ │ ├── text-x-dtd.png │ │ │ │ ├── text-x-generic.png │ │ │ │ ├── text-x-haskell.png │ │ │ │ ├── text-x-hex.png │ │ │ │ ├── text-x-install.png │ │ │ │ ├── text-x-java-source.png │ │ │ │ ├── text-x-java.png │ │ │ │ ├── text-x-javascript.png │ │ │ │ ├── text-x-katefilelist.png │ │ │ │ ├── text-x-ldif.png │ │ │ │ ├── text-x-lilypond.png │ │ │ │ ├── text-x-log.png │ │ │ │ ├── text-x-makefile.png │ │ │ │ ├── text-x-nfo.png │ │ │ │ ├── text-x-objchdr.png │ │ │ │ ├── text-x-objcsrc.png │ │ │ │ ├── text-x-opml+xml.png │ │ │ │ ├── text-x-opml.png │ │ │ │ ├── text-x-pascal.png │ │ │ │ ├── text-x-patch.png │ │ │ │ ├── text-x-plain.png │ │ │ │ ├── text-x-po.png │ │ │ │ ├── text-x-python.png │ │ │ │ ├── text-x-qml.png │ │ │ │ ├── text-x-readme.png │ │ │ │ ├── text-x-rpm-spec.png │ │ │ │ ├── text-x-script.png │ │ │ │ ├── text-x-sql.png │ │ │ │ ├── text-x-tcl.png │ │ │ │ ├── text-x-tex.png │ │ │ │ ├── text-x-texinfo.png │ │ │ │ ├── text-x-vcard.png │ │ │ │ ├── text-x-xslfo.png │ │ │ │ ├── text-xmcd.png │ │ │ │ ├── text-xml.png │ │ │ │ ├── unknown.png │ │ │ │ ├── uri-mms.png │ │ │ │ ├── uri-mmst.png │ │ │ │ ├── uri-mmsu.png │ │ │ │ ├── uri-pnm.png │ │ │ │ ├── uri-rtspt.png │ │ │ │ ├── uri-rtspu.png │ │ │ │ ├── video-mlt-playlist.png │ │ │ │ ├── video-mp4.png │ │ │ │ ├── video-vivo.png │ │ │ │ ├── video-vnd.rn-realvideo.png │ │ │ │ ├── video-wavelet.png │ │ │ │ ├── video-webm.png │ │ │ │ ├── video-x-anim.png │ │ │ │ ├── video-x-flic.png │ │ │ │ ├── video-x-flv.png │ │ │ │ ├── video-x-generic.png │ │ │ │ ├── video-x-google-vlc-plugin.png │ │ │ │ ├── video-x-javafx.png │ │ │ │ ├── video-x-matroska.png │ │ │ │ ├── video-x-mng.png │ │ │ │ ├── video-x-ms-wmp.png │ │ │ │ ├── video-x-ms-wmv.png │ │ │ │ ├── video-x-msvideo.png │ │ │ │ ├── video-x-ogm+ogg.png │ │ │ │ ├── video-x-theor+ogg.png │ │ │ │ ├── video-x-theora+ogg.png │ │ │ │ ├── video-x-wmv.png │ │ │ │ ├── virtualbox-vhd.png │ │ │ │ ├── x-kde-nsplugin-generated.png │ │ │ │ ├── x-mail-distribution-list.png │ │ │ │ ├── x-media-podcast.png │ │ │ │ ├── x-office-address-book.png │ │ │ │ ├── x-office-calendar.png │ │ │ │ ├── x-office-contact.png │ │ │ │ ├── x-office-document.png │ │ │ │ ├── x-office-drawing.png │ │ │ │ ├── x-office-presentation.png │ │ │ │ └── x-office-spreadsheet.png │ │ │ ├── places │ │ │ │ ├── bookmarks.png │ │ │ │ ├── certificate-server.png │ │ │ │ ├── desktop.png │ │ │ │ ├── document-multiple.png │ │ │ │ ├── favorites.png │ │ │ │ ├── folder-activities.png │ │ │ │ ├── folder-black.png │ │ │ │ ├── folder-blue.png │ │ │ │ ├── folder-bookmark.png │ │ │ │ ├── folder-brown.png │ │ │ │ ├── folder-cloud.png │ │ │ │ ├── folder-cyan.png │ │ │ │ ├── folder-development.png │ │ │ │ ├── folder-documents.png │ │ │ │ ├── folder-download.png │ │ │ │ ├── folder-downloads.png │ │ │ │ ├── folder-dropbox.png │ │ │ │ ├── folder-favorites.png │ │ │ │ ├── folder-games.png │ │ │ │ ├── folder-gdrive.png │ │ │ │ ├── folder-green.png │ │ │ │ ├── folder-grey.png │ │ │ │ ├── folder-html.png │ │ │ │ ├── folder-image-people.png │ │ │ │ ├── folder-image.png │ │ │ │ ├── folder-images.png │ │ │ │ ├── folder-important.png │ │ │ │ ├── folder-locked.png │ │ │ │ ├── folder-mail.png │ │ │ │ ├── folder-music.png │ │ │ │ ├── folder-network.png │ │ │ │ ├── folder-onedrive.png │ │ │ │ ├── folder-open.png │ │ │ │ ├── folder-orange.png │ │ │ │ ├── folder-owncloud.png │ │ │ │ ├── folder-picture.png │ │ │ │ ├── folder-pictures.png │ │ │ │ ├── folder-print.png │ │ │ │ ├── folder-public.png │ │ │ │ ├── folder-publicshare.png │ │ │ │ ├── folder-red.png │ │ │ │ ├── folder-remote.png │ │ │ │ ├── folder-script.png │ │ │ │ ├── folder-sound.png │ │ │ │ ├── folder-tar.png │ │ │ │ ├── folder-temp.png │ │ │ │ ├── folder-text.png │ │ │ │ ├── folder-txt.png │ │ │ │ ├── folder-video.png │ │ │ │ ├── folder-videos.png │ │ │ │ ├── folder-violet.png │ │ │ │ ├── folder-yellow.png │ │ │ │ ├── folder.png │ │ │ │ ├── folder_html.png │ │ │ │ ├── mail-folder-inbox.png │ │ │ │ ├── mail-folder-outbox.png │ │ │ │ ├── mail-folder-sent.png │ │ │ │ ├── mail-message.png │ │ │ │ ├── network-server-database.png │ │ │ │ ├── network-server.png │ │ │ │ ├── network-workgroup.png │ │ │ │ ├── repository.png │ │ │ │ ├── server-database.png │ │ │ │ ├── start-here-kde.png │ │ │ │ ├── start-here.png │ │ │ │ ├── stock_folder.png │ │ │ │ ├── user-desktop.png │ │ │ │ ├── user-home.png │ │ │ │ ├── user-identity.png │ │ │ │ ├── user-trash-full.png │ │ │ │ └── user-trash.png │ │ │ ├── special │ │ │ │ ├── file-zoom-in.png │ │ │ │ ├── file-zoom-out.png │ │ │ │ ├── image-zoom-in.png │ │ │ │ └── image-zoom-out.png │ │ │ └── status │ │ │ │ ├── appointment-recurring.png │ │ │ │ ├── appointment-reminder.png │ │ │ │ ├── audio-volume-high.png │ │ │ │ ├── audio-volume-low.png │ │ │ │ ├── audio-volume-medium.png │ │ │ │ ├── audio-volume-muted.png │ │ │ │ ├── battery-040.png │ │ │ │ ├── battery-060.png │ │ │ │ ├── battery-080.png │ │ │ │ ├── battery-100.png │ │ │ │ ├── battery-caution.png │ │ │ │ ├── battery-charging-040.png │ │ │ │ ├── battery-charging-060.png │ │ │ │ ├── battery-charging-080.png │ │ │ │ ├── battery-charging-caution.png │ │ │ │ ├── battery-charging-low.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-low.png │ │ │ │ ├── battery-missing.png │ │ │ │ ├── cloudstatus.png │ │ │ │ ├── data-error.png │ │ │ │ ├── data-information.png │ │ │ │ ├── data-warning.png │ │ │ │ ├── dialog-error.png │ │ │ │ ├── dialog-information.png │ │ │ │ ├── dialog-password.png │ │ │ │ ├── dialog-warning.png │ │ │ │ ├── dropboxstatus-busy2.png │ │ │ │ ├── dropboxstatus-logo.png │ │ │ │ ├── folder-open.png │ │ │ │ ├── image-loading.png │ │ │ │ ├── image-missing.png │ │ │ │ ├── mail-attachment.png │ │ │ │ ├── mail-queued.png │ │ │ │ ├── mail-read.png │ │ │ │ ├── mail-replied.png │ │ │ │ ├── mail-sent.png │ │ │ │ ├── mail-tagged.png │ │ │ │ ├── mail-task.png │ │ │ │ ├── mail-unread-new.png │ │ │ │ ├── mail-unread.png │ │ │ │ ├── media-playlist-repeat.png │ │ │ │ ├── media-playlist-shuffle.png │ │ │ │ ├── meeting-chair.png │ │ │ │ ├── meeting-observer.png │ │ │ │ ├── meeting-organizer.png │ │ │ │ ├── meeting-participant-optional.png │ │ │ │ ├── meeting-participant-reply.png │ │ │ │ ├── meeting-participant.png │ │ │ │ ├── object-locked.png │ │ │ │ ├── object-unlocked.png │ │ │ │ ├── printer-error.png │ │ │ │ ├── printer-printing.png │ │ │ │ ├── script-error.png │ │ │ │ ├── security-high.png │ │ │ │ ├── security-low.png │ │ │ │ ├── security-medium.png │ │ │ │ ├── task-accepted.png │ │ │ │ ├── task-attempt.png │ │ │ │ ├── task-attention.png │ │ │ │ ├── task-complete.png │ │ │ │ ├── task-delegate.png │ │ │ │ ├── task-ongoing.png │ │ │ │ ├── task-recurring.png │ │ │ │ ├── task-reject.png │ │ │ │ ├── task-reminder.png │ │ │ │ ├── user-away-extended.png │ │ │ │ ├── user-away.png │ │ │ │ ├── user-busy.png │ │ │ │ ├── user-invisible.png │ │ │ │ ├── user-offline.png │ │ │ │ ├── user-online.png │ │ │ │ ├── user-trash-full.png │ │ │ │ ├── wallet-closed.png │ │ │ │ ├── wallet-open.png │ │ │ │ ├── weather-clear-night.png │ │ │ │ ├── weather-clear.png │ │ │ │ ├── weather-clouds-night.png │ │ │ │ ├── weather-clouds.png │ │ │ │ ├── weather-few-clouds-night.png │ │ │ │ ├── weather-few-clouds.png │ │ │ │ ├── weather-fog.png │ │ │ │ ├── weather-freezing-rain.png │ │ │ │ ├── weather-hail.png │ │ │ │ ├── weather-many-clouds.png │ │ │ │ ├── weather-mist.png │ │ │ │ ├── weather-overcast.png │ │ │ │ ├── weather-showers-day.png │ │ │ │ ├── weather-showers-night.png │ │ │ │ ├── weather-showers-scattered-day.png │ │ │ │ ├── weather-showers-scattered-night.png │ │ │ │ ├── weather-showers-scattered.png │ │ │ │ ├── weather-showers.png │ │ │ │ ├── weather-snow-rain.png │ │ │ │ ├── weather-snow-scattered-day.png │ │ │ │ ├── weather-snow-scattered-night.png │ │ │ │ ├── weather-snow-scattered.png │ │ │ │ ├── weather-snow.png │ │ │ │ ├── weather-storm-day.png │ │ │ │ ├── weather-storm-night.png │ │ │ │ ├── weather-storm.png │ │ │ │ └── window-suppressed.png │ │ ├── 64x64 │ │ │ ├── actions │ │ │ │ ├── address-book-new.png │ │ │ │ ├── application-exit.png │ │ │ │ ├── application-menu.png │ │ │ │ ├── appointment-new.png │ │ │ │ ├── bookmark-new.png │ │ │ │ ├── call-start.png │ │ │ │ ├── call-stop.png │ │ │ │ ├── chronometer.png │ │ │ │ ├── configure.png │ │ │ │ ├── contact-new.png │ │ │ │ ├── continue-data-project.png │ │ │ │ ├── dashboard-show.png │ │ │ │ ├── dialog-ok-apply.png │ │ │ │ ├── dialog-ok.png │ │ │ │ ├── document-edit.png │ │ │ │ ├── document-preview-archive.png │ │ │ │ ├── document-preview.png │ │ │ │ ├── edit-bomb.png │ │ │ │ ├── edit-find.png │ │ │ │ ├── edit-paste.png │ │ │ │ ├── go-bottom.png │ │ │ │ ├── go-down.png │ │ │ │ ├── go-first-view-page.png │ │ │ │ ├── go-first.png │ │ │ │ ├── go-last-view-page.png │ │ │ │ ├── go-last.png │ │ │ │ ├── go-next-view-page.png │ │ │ │ ├── go-next.png │ │ │ │ ├── go-previous-view-page.png │ │ │ │ ├── go-previous.png │ │ │ │ ├── go-top.png │ │ │ │ ├── go-up.png │ │ │ │ ├── im-ban-kick-user.png │ │ │ │ ├── im-ban-user.png │ │ │ │ ├── im-invisible-user.png │ │ │ │ ├── im-kick-user.png │ │ │ │ ├── im-user-away.png │ │ │ │ ├── im-user-busy.png │ │ │ │ ├── im-user-offline.png │ │ │ │ ├── im-user.png │ │ │ │ ├── insert-horizontal-rule.png │ │ │ │ ├── insert-link.png │ │ │ │ ├── list-add-user.png │ │ │ │ ├── list-remove.png │ │ │ │ ├── mail-receive.png │ │ │ │ ├── resource-group.png │ │ │ │ ├── roll.png │ │ │ │ ├── svn-commit.png │ │ │ │ ├── svn-update.png │ │ │ │ ├── system-lock-screen.png │ │ │ │ ├── system-log-out.png │ │ │ │ ├── system-reboot.png │ │ │ │ ├── system-run.png │ │ │ │ ├── system-search.png │ │ │ │ ├── system-shutdown.png │ │ │ │ ├── system-suspend-hibernate.png │ │ │ │ ├── system-suspend.png │ │ │ │ ├── system-switch-user.png │ │ │ │ ├── tool-animator.png │ │ │ │ ├── tools-media-optical-burn-image.png │ │ │ │ ├── tools-media-optical-burn.png │ │ │ │ ├── tools-media-optical-erase.png │ │ │ │ ├── tools-media-optical-format.png │ │ │ │ ├── tools-report-bug.png │ │ │ │ ├── tools-rip-audio-cd.png │ │ │ │ ├── tools-rip-video-cd.png │ │ │ │ ├── tools-rip-video-dvd.png │ │ │ │ ├── tools-wizard.png │ │ │ │ ├── transform-crop-and-resize.png │ │ │ │ ├── transform-move.png │ │ │ │ ├── transform-scale.png │ │ │ │ ├── user-group-new.png │ │ │ │ ├── view-conversation-balloon.png │ │ │ │ ├── view-media-lyrics.png │ │ │ │ ├── view-media-playlist.png │ │ │ │ ├── view-pim-contacts.png │ │ │ │ ├── view-presentation.png │ │ │ │ ├── window-duplicate.png │ │ │ │ ├── zoom-fit-best.png │ │ │ │ ├── zoom-fit-height.png │ │ │ │ └── zoom-fit-width.png │ │ │ ├── apps │ │ │ │ ├── Charm.png │ │ │ │ ├── accessories-calculator.png │ │ │ │ ├── accessories-character-map.png │ │ │ │ ├── accessories-dictionary.png │ │ │ │ ├── accessories-text-editor.png │ │ │ │ ├── acroread.png │ │ │ │ ├── akonadi.png │ │ │ │ ├── akregator.png │ │ │ │ ├── amarok.png │ │ │ │ ├── ark.png │ │ │ │ ├── artikulate.png │ │ │ │ ├── basket.png │ │ │ │ ├── braindump.png │ │ │ │ ├── calligraauthor.png │ │ │ │ ├── calligraflow.png │ │ │ │ ├── calligrakexi.png │ │ │ │ ├── calligrakrita.png │ │ │ │ ├── calligrasheets.png │ │ │ │ ├── calligrastage.png │ │ │ │ ├── calligrawords.png │ │ │ │ ├── clock.png │ │ │ │ ├── digikam.png │ │ │ │ ├── dragonplayer.png │ │ │ │ ├── esd.png │ │ │ │ ├── filelight.png │ │ │ │ ├── fontforge.png │ │ │ │ ├── graphics-viewer-document.png │ │ │ │ ├── gwenview.png │ │ │ │ ├── help-browser.png │ │ │ │ ├── hwinfo.png │ │ │ │ ├── inkscape.png │ │ │ │ ├── internet-mail.png │ │ │ │ ├── internet-telephony.png │ │ │ │ ├── internet-web-browser.png │ │ │ │ ├── k3b.png │ │ │ │ ├── kaddressbook.png │ │ │ │ ├── kaffeine.png │ │ │ │ ├── kalarm.png │ │ │ │ ├── kblogger.png │ │ │ │ ├── kbruch.png │ │ │ │ ├── kbugbuster.png │ │ │ │ ├── kchart.png │ │ │ │ ├── kcolorchooser.png │ │ │ │ ├── kde-gtk-config.png │ │ │ │ ├── kde-windows.png │ │ │ │ ├── kde.png │ │ │ │ ├── kdevelop.png │ │ │ │ ├── kdf.png │ │ │ │ ├── kfind.png │ │ │ │ ├── kformula.png │ │ │ │ ├── kgpg.png │ │ │ │ ├── kig.png │ │ │ │ ├── kivio.png │ │ │ │ ├── kjournal.png │ │ │ │ ├── klipper.png │ │ │ │ ├── kmag.png │ │ │ │ ├── kmix.png │ │ │ │ ├── kmplayer.png │ │ │ │ ├── knewsticker.png │ │ │ │ ├── knotes.png │ │ │ │ ├── kolf.png │ │ │ │ ├── konqueror.png │ │ │ │ ├── kontact-import-wizard.png │ │ │ │ ├── kontact.png │ │ │ │ ├── konversation.png │ │ │ │ ├── kopete-offline.png │ │ │ │ ├── kopete.png │ │ │ │ ├── korg-journal.png │ │ │ │ ├── korg-todo.png │ │ │ │ ├── korgac.png │ │ │ │ ├── korganizer.png │ │ │ │ ├── kplato.png │ │ │ │ ├── kpresenter.png │ │ │ │ ├── krdc.png │ │ │ │ ├── krfb.png │ │ │ │ ├── ksnapshot.png │ │ │ │ ├── ksniffer.png │ │ │ │ ├── kspread.png │ │ │ │ ├── ksudoku.png │ │ │ │ ├── kthesaurus.png │ │ │ │ ├── ktip.png │ │ │ │ ├── ktorrent.png │ │ │ │ ├── kuickshow.png │ │ │ │ ├── kverbos.png │ │ │ │ ├── kwalletmanager.png │ │ │ │ ├── kword.png │ │ │ │ ├── multimedia-volume-control.png │ │ │ │ ├── nepomuk.png │ │ │ │ ├── office-address-book.png │ │ │ │ ├── office-calendar.png │ │ │ │ ├── okteta.png │ │ │ │ ├── okular.png │ │ │ │ ├── oxygen.png │ │ │ │ ├── partitionmanager.png │ │ │ │ ├── picmi.png │ │ │ │ ├── planner.png │ │ │ │ ├── plasma.png │ │ │ │ ├── plasmagik.png │ │ │ │ ├── preferences-contact-list.png │ │ │ │ ├── preferences-desktop-accessibility.png │ │ │ │ ├── preferences-desktop-color.png │ │ │ │ ├── preferences-desktop-cryptography.png │ │ │ │ ├── preferences-desktop-default-applications.png │ │ │ │ ├── preferences-desktop-display-color.png │ │ │ │ ├── preferences-desktop-display.png │ │ │ │ ├── preferences-desktop-font.png │ │ │ │ ├── preferences-desktop-gaming.png │ │ │ │ ├── preferences-desktop-icons.png │ │ │ │ ├── preferences-desktop-keyboard.png │ │ │ │ ├── preferences-desktop-locale.png │ │ │ │ ├── preferences-desktop-mouse.png │ │ │ │ ├── preferences-desktop-notification-bell.png │ │ │ │ ├── preferences-desktop-notification.png │ │ │ │ ├── preferences-desktop-printer.png │ │ │ │ ├── preferences-desktop-screensaver.png │ │ │ │ ├── preferences-desktop-sound.png │ │ │ │ ├── preferences-desktop-text-to-speech.png │ │ │ │ ├── preferences-desktop-theme.png │ │ │ │ ├── preferences-desktop-user-password.png │ │ │ │ ├── preferences-desktop-user.png │ │ │ │ ├── preferences-desktop-wallpaper.png │ │ │ │ ├── preferences-kcalc-constants.png │ │ │ │ ├── preferences-plugin.png │ │ │ │ ├── preferences-system-bluetooth-inactive.png │ │ │ │ ├── preferences-system-bluetooth.png │ │ │ │ ├── preferences-system-login.png │ │ │ │ ├── preferences-system-network-sharing.png │ │ │ │ ├── preferences-system-power-management.png │ │ │ │ ├── preferences-system-time.png │ │ │ │ ├── preferences-system-windows-actions.png │ │ │ │ ├── preferences-system-windows-move.png │ │ │ │ ├── preferences-system-windows.png │ │ │ │ ├── qelectrotech.png │ │ │ │ ├── quassel.png │ │ │ │ ├── scribus.png │ │ │ │ ├── semn.png │ │ │ │ ├── showfoto.png │ │ │ │ ├── skrooge-black.png │ │ │ │ ├── skrooge-initial.png │ │ │ │ ├── skrooge.png │ │ │ │ ├── step.png │ │ │ │ ├── strigi.png │ │ │ │ ├── system-file-manager.png │ │ │ │ ├── system-software-update.png │ │ │ │ ├── system-users.png │ │ │ │ ├── tagua.png │ │ │ │ ├── telepathy-kde.png │ │ │ │ ├── utilities-desktop-extra.png │ │ │ │ ├── utilities-file-archiver.png │ │ │ │ ├── utilities-log-viewer.png │ │ │ │ ├── utilities-system-monitor.png │ │ │ │ ├── utilities-terminal.png │ │ │ │ ├── wine.png │ │ │ │ ├── xorg.png │ │ │ │ ├── yakuake.png │ │ │ │ └── zanshin.png │ │ │ ├── categories │ │ │ │ ├── applications-accessories.png │ │ │ │ ├── applications-all.png │ │ │ │ ├── applications-development-translation.png │ │ │ │ ├── applications-development-web.png │ │ │ │ ├── applications-development.png │ │ │ │ ├── applications-education-language.png │ │ │ │ ├── applications-education-mathematics.png │ │ │ │ ├── applications-education-miscellaneous.png │ │ │ │ ├── applications-education-preschool.png │ │ │ │ ├── applications-education-school.png │ │ │ │ ├── applications-education-science.png │ │ │ │ ├── applications-education-university.png │ │ │ │ ├── applications-education.png │ │ │ │ ├── applications-engineering.png │ │ │ │ ├── applications-games.png │ │ │ │ ├── applications-graphics.png │ │ │ │ ├── applications-internet.png │ │ │ │ ├── applications-multimedia.png │ │ │ │ ├── applications-office.png │ │ │ │ ├── applications-other.png │ │ │ │ ├── applications-science.png │ │ │ │ ├── applications-system.png │ │ │ │ ├── applications-toys.png │ │ │ │ ├── applications-utilities.png │ │ │ │ ├── preferences-desktop-peripherals.png │ │ │ │ ├── preferences-desktop-personal.png │ │ │ │ ├── preferences-desktop.png │ │ │ │ ├── preferences-devices-printer.png │ │ │ │ ├── preferences-kde-connect.png │ │ │ │ ├── preferences-other.png │ │ │ │ ├── preferences-system-network.png │ │ │ │ ├── preferences-system.png │ │ │ │ └── system-help.png │ │ │ ├── devices │ │ │ │ ├── audio-card.png │ │ │ │ ├── audio-headphones.png │ │ │ │ ├── audio-headset.png │ │ │ │ ├── audio-input-line.png │ │ │ │ ├── audio-input-microphone.png │ │ │ │ ├── battery.png │ │ │ │ ├── camera-photo.png │ │ │ │ ├── camera-web.png │ │ │ │ ├── computer-laptop.png │ │ │ │ ├── computer.png │ │ │ │ ├── cpu.png │ │ │ │ ├── drive-harddisk.png │ │ │ │ ├── drive-optical.png │ │ │ │ ├── drive-removable-media-usb-pendrive.png │ │ │ │ ├── drive-removable-media-usb.png │ │ │ │ ├── drive-removable-media.png │ │ │ │ ├── input-gaming.png │ │ │ │ ├── input-keyboard.png │ │ │ │ ├── input-mouse.png │ │ │ │ ├── input-tablet.png │ │ │ │ ├── media-flash-memory-stick.png │ │ │ │ ├── media-flash-sd-mmc.png │ │ │ │ ├── media-flash-smart-media.png │ │ │ │ ├── media-flash.png │ │ │ │ ├── media-floppy.png │ │ │ │ ├── media-optical-audio.png │ │ │ │ ├── media-optical-blu-ray.png │ │ │ │ ├── media-optical-data.png │ │ │ │ ├── media-optical-dvd-video.png │ │ │ │ ├── media-optical-dvd.png │ │ │ │ ├── media-optical-mixed-cd.png │ │ │ │ ├── media-optical-recordable.png │ │ │ │ ├── media-optical-video.png │ │ │ │ ├── media-optical.png │ │ │ │ ├── media-tape.png │ │ │ │ ├── microphone.png │ │ │ │ ├── modem.png │ │ │ │ ├── multimedia-player-apple-ipod.png │ │ │ │ ├── multimedia-player.png │ │ │ │ ├── network-wired.png │ │ │ │ ├── network-wireless-connected-00.png │ │ │ │ ├── network-wireless-connected-100.png │ │ │ │ ├── network-wireless-connected-25.png │ │ │ │ ├── network-wireless-connected-50.png │ │ │ │ ├── network-wireless-connected-75.png │ │ │ │ ├── network-wireless-disconnected.png │ │ │ │ ├── network-wireless.png │ │ │ │ ├── pda.png │ │ │ │ ├── phone-openmoko-freerunner.png │ │ │ │ ├── phone.png │ │ │ │ ├── printer-laser.png │ │ │ │ ├── printer.png │ │ │ │ ├── scanner.png │ │ │ │ ├── smartphone.png │ │ │ │ ├── tablet.png │ │ │ │ ├── video-display.png │ │ │ │ ├── video-projector.png │ │ │ │ └── video-television.png │ │ │ ├── emblems │ │ │ │ ├── emblem-important.png │ │ │ │ ├── emblem-mounted.png │ │ │ │ └── emblem-symbolic-link.png │ │ │ ├── emotes │ │ │ │ ├── face-angel.png │ │ │ │ ├── face-embarrassed.png │ │ │ │ ├── face-kiss.png │ │ │ │ ├── face-laugh.png │ │ │ │ ├── face-plain.png │ │ │ │ ├── face-raspberry.png │ │ │ │ ├── face-sad.png │ │ │ │ ├── face-smile-big.png │ │ │ │ ├── face-smile.png │ │ │ │ ├── face-surprise.png │ │ │ │ ├── face-uncertain.png │ │ │ │ └── face-wink.png │ │ │ ├── mimetypes │ │ │ │ ├── application-atom+xml.png │ │ │ │ ├── application-epub+zip.png │ │ │ │ ├── application-illustrator.png │ │ │ │ ├── application-javascript.png │ │ │ │ ├── application-msword-template.png │ │ │ │ ├── application-msword.png │ │ │ │ ├── application-octet-stream.png │ │ │ │ ├── application-ogg.png │ │ │ │ ├── application-pdf.png │ │ │ │ ├── application-pgp-encrypted.png │ │ │ │ ├── application-pgp-keys.png │ │ │ │ ├── application-pkcs7-mime.png │ │ │ │ ├── application-postscript.png │ │ │ │ ├── application-relaxng.png │ │ │ │ ├── application-rss+xml.png │ │ │ │ ├── application-rtf.png │ │ │ │ ├── application-sxw.png │ │ │ │ ├── application-vnd-google-earth-kml.png │ │ │ │ ├── application-vnd-rar.png │ │ │ │ ├── application-vnd.iccprofile.png │ │ │ │ ├── application-vnd.ms-access.png │ │ │ │ ├── application-vnd.ms-excel.png │ │ │ │ ├── application-vnd.ms-powerpoint.png │ │ │ │ ├── application-vnd.oasis.opendocument.chart.png │ │ │ │ ├── application-vnd.oasis.opendocument.database.png │ │ │ │ ├── application-vnd.oasis.opendocument.draw.template.png │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.png │ │ │ │ ├── application-vnd.oasis.opendocument.drawing.template.png │ │ │ │ ├── application-vnd.oasis.opendocument.formula-template.png │ │ │ │ ├── application-vnd.oasis.opendocument.formula.png │ │ │ │ ├── application-vnd.oasis.opendocument.graphics.png │ │ │ │ ├── application-vnd.oasis.opendocument.image.png │ │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.png │ │ │ │ ├── application-vnd.oasis.opendocument.presentation.png │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.png │ │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet.png │ │ │ │ ├── application-vnd.oasis.opendocument.text-master.png │ │ │ │ ├── application-vnd.oasis.opendocument.text-template.png │ │ │ │ ├── application-vnd.oasis.opendocument.text.png │ │ │ │ ├── application-vnd.oasis.opendocument.web.template.png │ │ │ │ ├── application-vnd.openxmlformats-officedocument.wordprocessingml.document.png │ │ │ │ ├── application-vnd.rn-realmedia.png │ │ │ │ ├── application-vnd.scribus.png │ │ │ │ ├── application-vnd.stardivision.calc.png │ │ │ │ ├── application-vnd.stardivision.draw.png │ │ │ │ ├── application-vnd.stardivision.mail.png │ │ │ │ ├── application-vnd.stardivision.math.png │ │ │ │ ├── application-vnd.sun.xml.calc.png │ │ │ │ ├── application-vnd.sun.xml.calc.template.png │ │ │ │ ├── application-vnd.sun.xml.draw.png │ │ │ │ ├── application-vnd.sun.xml.draw.template.png │ │ │ │ ├── application-vnd.sun.xml.impress.png │ │ │ │ ├── application-vnd.sun.xml.impress.template.png │ │ │ │ ├── application-vnd.sun.xml.math.png │ │ │ │ ├── application-vnd.sun.xml.writer.global.png │ │ │ │ ├── application-vnd.sun.xml.writer.png │ │ │ │ ├── application-vnd.sun.xml.writer.template.png │ │ │ │ ├── application-vnd.wordperfect.png │ │ │ │ ├── application-x-7z-compressed.png │ │ │ │ ├── application-x-abiword.png │ │ │ │ ├── application-x-ace.png │ │ │ │ ├── application-x-applix-spreadsheet.png │ │ │ │ ├── application-x-applix-word.png │ │ │ │ ├── application-x-ar.png │ │ │ │ ├── application-x-arc.png │ │ │ │ ├── application-x-archive.png │ │ │ │ ├── application-x-arj.png │ │ │ │ ├── application-x-awk.png │ │ │ │ ├── application-x-bittorrent.png │ │ │ │ ├── application-x-blender.png │ │ │ │ ├── application-x-bzdvi.png │ │ │ │ ├── application-x-bzip-compressed-tar.png │ │ │ │ ├── application-x-bzip.png │ │ │ │ ├── application-x-cd-image.png │ │ │ │ ├── application-x-cda.png │ │ │ │ ├── application-x-chm.png │ │ │ │ ├── application-x-compress.png │ │ │ │ ├── application-x-compressed-tar.png │ │ │ │ ├── application-x-cpio.png │ │ │ │ ├── application-x-cue.png │ │ │ │ ├── application-x-deb.png │ │ │ │ ├── application-x-designer.png │ │ │ │ ├── application-x-desktop.png │ │ │ │ ├── application-x-dgn.png │ │ │ │ ├── application-x-egon.png │ │ │ │ ├── application-x-executable-script.png │ │ │ │ ├── application-x-executable.png │ │ │ │ ├── application-x-flash-video.png │ │ │ │ ├── application-x-font-afm.png │ │ │ │ ├── application-x-font-bdf.png │ │ │ │ ├── application-x-font-otf.png │ │ │ │ ├── application-x-font-pcf.png │ │ │ │ ├── application-x-font-snf.png │ │ │ │ ├── application-x-font-ttf.png │ │ │ │ ├── application-x-font-type1.png │ │ │ │ ├── application-x-gnumeric.png │ │ │ │ ├── application-x-gzdvi.png │ │ │ │ ├── application-x-gzip.png │ │ │ │ ├── application-x-gzpostscript.png │ │ │ │ ├── application-x-iso.png │ │ │ │ ├── application-x-it87.png │ │ │ │ ├── application-x-jar.png │ │ │ │ ├── application-x-java-applet.png │ │ │ │ ├── application-x-java-archive.png │ │ │ │ ├── application-x-java.png │ │ │ │ ├── application-x-javascript.png │ │ │ │ ├── application-x-k3b.png │ │ │ │ ├── application-x-kcsrc.png │ │ │ │ ├── application-x-kdenlivetitle.png │ │ │ │ ├── application-x-kexi-connectiondata.png │ │ │ │ ├── application-x-kexiproject-shortcut.png │ │ │ │ ├── application-x-kexiproject-sqlite.png │ │ │ │ ├── application-x-kexiproject-sqlite2.png │ │ │ │ ├── application-x-kexiproject-sqlite3.png │ │ │ │ ├── application-x-kformula.png │ │ │ │ ├── application-x-kgetlist.png │ │ │ │ ├── application-x-kontour.png │ │ │ │ ├── application-x-kplato.png │ │ │ │ ├── application-x-krita.png │ │ │ │ ├── application-x-kvtml.png │ │ │ │ ├── application-x-kword.png │ │ │ │ ├── application-x-lha.png │ │ │ │ ├── application-x-lyx.png │ │ │ │ ├── application-x-lzma-compressed-tar.png │ │ │ │ ├── application-x-lzop.png │ │ │ │ ├── application-x-m4.png │ │ │ │ ├── application-x-marble.png │ │ │ │ ├── application-x-mimearchive.png │ │ │ │ ├── application-x-mplayer2.png │ │ │ │ ├── application-x-ms-dos-executable.png │ │ │ │ ├── application-x-mswinurl.png │ │ │ │ ├── application-x-mswrite.png │ │ │ │ ├── application-x-nzb.png │ │ │ │ ├── application-x-object.png │ │ │ │ ├── application-x-pak.png │ │ │ │ ├── application-x-pem-key.png │ │ │ │ ├── application-x-perl.png │ │ │ │ ├── application-x-php.png │ │ │ │ ├── application-x-plasma.png │ │ │ │ ├── application-x-python-bytecode.png │ │ │ │ ├── application-x-qet-element.png │ │ │ │ ├── application-x-qet-project.png │ │ │ │ ├── application-x-quattropro.png │ │ │ │ ├── application-x-rar.png │ │ │ │ ├── application-x-raw-disk-image.png │ │ │ │ ├── application-x-rpm.png │ │ │ │ ├── application-x-ruby.png │ │ │ │ ├── application-x-sharedlib.png │ │ │ │ ├── application-x-shellscript.png │ │ │ │ ├── application-x-shockwave-flash.png │ │ │ │ ├── application-x-siag.png │ │ │ │ ├── application-x-sif.png │ │ │ │ ├── application-x-skg.png │ │ │ │ ├── application-x-skgc.png │ │ │ │ ├── application-x-smb-server.png │ │ │ │ ├── application-x-smb-workgroup.png │ │ │ │ ├── application-x-sqlite2.png │ │ │ │ ├── application-x-sqlite3.png │ │ │ │ ├── application-x-srt.png │ │ │ │ ├── application-x-srtrip.png │ │ │ │ ├── application-x-subrip.png │ │ │ │ ├── application-x-tar.png │ │ │ │ ├── application-x-tarz.png │ │ │ │ ├── application-x-tgif.png │ │ │ │ ├── application-x-trash.png │ │ │ │ ├── application-x-troff-man.png │ │ │ │ ├── application-x-tzo.png │ │ │ │ ├── application-x-wmf.png │ │ │ │ ├── application-x-zerosize.png │ │ │ │ ├── application-x-zoo.png │ │ │ │ ├── application-xhtml+xml.png │ │ │ │ ├── application-xml.png │ │ │ │ ├── application-xsd.png │ │ │ │ ├── application-xslt+xml.png │ │ │ │ ├── application-zip.png │ │ │ │ ├── audio-ac3.png │ │ │ │ ├── audio-midi.png │ │ │ │ ├── audio-mp2.png │ │ │ │ ├── audio-mp3.png │ │ │ │ ├── audio-mp4.png │ │ │ │ ├── audio-prs.sid.png │ │ │ │ ├── audio-vn.rn-realmedia.png │ │ │ │ ├── audio-vn.rn-realvideo.png │ │ │ │ ├── audio-vnd.rn-realvideo.png │ │ │ │ ├── audio-x-adpcm.png │ │ │ │ ├── audio-x-aiff.png │ │ │ │ ├── audio-x-flac+ogg.png │ │ │ │ ├── audio-x-flac.png │ │ │ │ ├── audio-x-generic.png │ │ │ │ ├── audio-x-monkey.png │ │ │ │ ├── audio-x-mp2.png │ │ │ │ ├── audio-x-mpeg.png │ │ │ │ ├── audio-x-speex+ogg.png │ │ │ │ ├── audio-x-wav.png │ │ │ │ ├── encrypted.png │ │ │ │ ├── fonts-package.png │ │ │ │ ├── image-bmp.png │ │ │ │ ├── image-gif.png │ │ │ │ ├── image-jpeg.png │ │ │ │ ├── image-jpeg2000.png │ │ │ │ ├── image-png.png │ │ │ │ ├── image-svg+xml-compressed.png │ │ │ │ ├── image-svg+xml.png │ │ │ │ ├── image-tiff.png │ │ │ │ ├── image-vnd.adobe.photoshop.png │ │ │ │ ├── image-vnd.dwg.png │ │ │ │ ├── image-x-adobe-dng.png │ │ │ │ ├── image-x-compressed-xcf.png │ │ │ │ ├── image-x-emf.png │ │ │ │ ├── image-x-eps.png │ │ │ │ ├── image-x-generic.png │ │ │ │ ├── image-x-krita.png │ │ │ │ ├── image-x-portable-bitmap.png │ │ │ │ ├── image-x-psd.png │ │ │ │ ├── image-x-psdimage-x-psd.png │ │ │ │ ├── image-x-svg+xml.png │ │ │ │ ├── image-x-tga.png │ │ │ │ ├── image-x-vnd.trolltech.qpicture.png │ │ │ │ ├── image-x-win-bitmap.png │ │ │ │ ├── image-x-win-bmp.png │ │ │ │ ├── image-x-wmf.png │ │ │ │ ├── image-x-xcf.png │ │ │ │ ├── image-x-xfig.png │ │ │ │ ├── inode-directory.png │ │ │ │ ├── libreoffice-database.png │ │ │ │ ├── libreoffice-drawing-template.png │ │ │ │ ├── libreoffice-drawing.png │ │ │ │ ├── libreoffice-extension.png │ │ │ │ ├── libreoffice-formula.png │ │ │ │ ├── libreoffice-master-document.png │ │ │ │ ├── libreoffice-oasis-database.png │ │ │ │ ├── libreoffice-oasis-drawing-template.png │ │ │ │ ├── libreoffice-oasis-drawing.png │ │ │ │ ├── libreoffice-oasis-formula.png │ │ │ │ ├── libreoffice-oasis-master-document.png │ │ │ │ ├── libreoffice-oasis-presentation-template.png │ │ │ │ ├── libreoffice-oasis-presentation.png │ │ │ │ ├── libreoffice-oasis-spreadsheet-template.png │ │ │ │ ├── libreoffice-oasis-spreadsheet.png │ │ │ │ ├── libreoffice-oasis-text-template.png │ │ │ │ ├── libreoffice-oasis-text.png │ │ │ │ ├── libreoffice-oasis-web-template.png │ │ │ │ ├── libreoffice-presentation-template.png │ │ │ │ ├── libreoffice-presentation.png │ │ │ │ ├── libreoffice-spreadsheet-template.png │ │ │ │ ├── libreoffice-spreadsheet.png │ │ │ │ ├── libreoffice-text-template.png │ │ │ │ ├── libreoffice-text.png │ │ │ │ ├── mail-message-new-list.png │ │ │ │ ├── message-news.png │ │ │ │ ├── message-partial.png │ │ │ │ ├── message-rfc822.png │ │ │ │ ├── message-x-gnu-rmail.png │ │ │ │ ├── message.png │ │ │ │ ├── odf.png │ │ │ │ ├── package-x-generic.png │ │ │ │ ├── text-calendar.png │ │ │ │ ├── text-csharp.png │ │ │ │ ├── text-css.png │ │ │ │ ├── text-csv.png │ │ │ │ ├── text-directory.png │ │ │ │ ├── text-enriched.png │ │ │ │ ├── text-html.png │ │ │ │ ├── text-mathml.png │ │ │ │ ├── text-plain.png │ │ │ │ ├── text-rdf+xml.png │ │ │ │ ├── text-rdf.png │ │ │ │ ├── text-rtf.png │ │ │ │ ├── text-sgml.png │ │ │ │ ├── text-troff.png │ │ │ │ ├── text-vcalendar.png │ │ │ │ ├── text-vnd.abc.png │ │ │ │ ├── text-vnd.wap.wml.png │ │ │ │ ├── text-x-adasrc.png │ │ │ │ ├── text-x-authors.png │ │ │ │ ├── text-x-bibtex.png │ │ │ │ ├── text-x-c++hdr.png │ │ │ │ ├── text-x-c++src.png │ │ │ │ ├── text-x-changelog.png │ │ │ │ ├── text-x-chdr.png │ │ │ │ ├── text-x-cmake.png │ │ │ │ ├── text-x-copying.png │ │ │ │ ├── text-x-credits.png │ │ │ │ ├── text-x-csharp.png │ │ │ │ ├── text-x-csrc.png │ │ │ │ ├── text-x-dtd.png │ │ │ │ ├── text-x-generic.png │ │ │ │ ├── text-x-haskell.png │ │ │ │ ├── text-x-hex.png │ │ │ │ ├── text-x-install.png │ │ │ │ ├── text-x-java-source.png │ │ │ │ ├── text-x-java.png │ │ │ │ ├── text-x-javascript.png │ │ │ │ ├── text-x-katefilelist.png │ │ │ │ ├── text-x-ldif.png │ │ │ │ ├── text-x-lilypond.png │ │ │ │ ├── text-x-log.png │ │ │ │ ├── text-x-makefile.png │ │ │ │ ├── text-x-nfo.png │ │ │ │ ├── text-x-objchdr.png │ │ │ │ ├── text-x-objcsrc.png │ │ │ │ ├── text-x-opml+xml.png │ │ │ │ ├── text-x-opml.png │ │ │ │ ├── text-x-pascal.png │ │ │ │ ├── text-x-patch.png │ │ │ │ ├── text-x-plain.png │ │ │ │ ├── text-x-po.png │ │ │ │ ├── text-x-python.png │ │ │ │ ├── text-x-qml.png │ │ │ │ ├── text-x-readme.png │ │ │ │ ├── text-x-rpm-spec.png │ │ │ │ ├── text-x-script.png │ │ │ │ ├── text-x-sql.png │ │ │ │ ├── text-x-tcl.png │ │ │ │ ├── text-x-tex.png │ │ │ │ ├── text-x-texinfo.png │ │ │ │ ├── text-x-vcard.png │ │ │ │ ├── text-x-xslfo.png │ │ │ │ ├── text-xmcd.png │ │ │ │ ├── text-xml.png │ │ │ │ ├── unknown.png │ │ │ │ ├── uri-mms.png │ │ │ │ ├── uri-mmst.png │ │ │ │ ├── uri-mmsu.png │ │ │ │ ├── uri-pnm.png │ │ │ │ ├── uri-rtspt.png │ │ │ │ ├── uri-rtspu.png │ │ │ │ ├── video-mlt-playlist.png │ │ │ │ ├── video-mp4.png │ │ │ │ ├── video-vivo.png │ │ │ │ ├── video-vnd.rn-realvideo.png │ │ │ │ ├── video-wavelet.png │ │ │ │ ├── video-webm.png │ │ │ │ ├── video-x-anim.png │ │ │ │ ├── video-x-flic.png │ │ │ │ ├── video-x-flv.png │ │ │ │ ├── video-x-generic.png │ │ │ │ ├── video-x-google-vlc-plugin.png │ │ │ │ ├── video-x-javafx.png │ │ │ │ ├── video-x-matroska.png │ │ │ │ ├── video-x-mng.png │ │ │ │ ├── video-x-ms-wmp.png │ │ │ │ ├── video-x-ms-wmv.png │ │ │ │ ├── video-x-msvideo.png │ │ │ │ ├── video-x-ogm+ogg.png │ │ │ │ ├── video-x-theor+ogg.png │ │ │ │ ├── video-x-theora+ogg.png │ │ │ │ ├── video-x-wmv.png │ │ │ │ ├── virtualbox-vhd.png │ │ │ │ ├── x-kde-nsplugin-generated.png │ │ │ │ ├── x-mail-distribution-list.png │ │ │ │ ├── x-media-podcast.png │ │ │ │ ├── x-office-address-book.png │ │ │ │ ├── x-office-calendar.png │ │ │ │ ├── x-office-document.png │ │ │ │ ├── x-office-drawing.png │ │ │ │ ├── x-office-presentation.png │ │ │ │ └── x-office-spreadsheet.png │ │ │ ├── places │ │ │ │ ├── bookmarks.png │ │ │ │ ├── certificate-server.png │ │ │ │ ├── document-multiple.png │ │ │ │ ├── favorites.png │ │ │ │ ├── folder-black.png │ │ │ │ ├── folder-blue.png │ │ │ │ ├── folder-bookmark.png │ │ │ │ ├── folder-brown.png │ │ │ │ ├── folder-cloud.png │ │ │ │ ├── folder-cyan.png │ │ │ │ ├── folder-development.png │ │ │ │ ├── folder-documents.png │ │ │ │ ├── folder-download.png │ │ │ │ ├── folder-downloads.png │ │ │ │ ├── folder-dropbox.png │ │ │ │ ├── folder-favorites.png │ │ │ │ ├── folder-games.png │ │ │ │ ├── folder-gdrive.png │ │ │ │ ├── folder-green.png │ │ │ │ ├── folder-grey.png │ │ │ │ ├── folder-html.png │ │ │ │ ├── folder-image-people.png │ │ │ │ ├── folder-image.png │ │ │ │ ├── folder-images.png │ │ │ │ ├── folder-important.png │ │ │ │ ├── folder-locked.png │ │ │ │ ├── folder-mail.png │ │ │ │ ├── folder-music.png │ │ │ │ ├── folder-network.png │ │ │ │ ├── folder-onedrive.png │ │ │ │ ├── folder-orange.png │ │ │ │ ├── folder-owncloud.png │ │ │ │ ├── folder-picture.png │ │ │ │ ├── folder-pictures.png │ │ │ │ ├── folder-print.png │ │ │ │ ├── folder-public.png │ │ │ │ ├── folder-publicshare.png │ │ │ │ ├── folder-red.png │ │ │ │ ├── folder-remote.png │ │ │ │ ├── folder-script.png │ │ │ │ ├── folder-sound.png │ │ │ │ ├── folder-tar.png │ │ │ │ ├── folder-temp.png │ │ │ │ ├── folder-text.png │ │ │ │ ├── folder-txt.png │ │ │ │ ├── folder-video.png │ │ │ │ ├── folder-videos.png │ │ │ │ ├── folder-violet.png │ │ │ │ ├── folder-yellow.png │ │ │ │ ├── folder.png │ │ │ │ ├── library-music.png │ │ │ │ ├── mail-folder-outbox.png │ │ │ │ ├── mail-folder-sent.png │ │ │ │ ├── mail-message.png │ │ │ │ ├── network-server-database.png │ │ │ │ ├── network-server.png │ │ │ │ ├── network-workgroup.png │ │ │ │ ├── repository.png │ │ │ │ ├── server-database.png │ │ │ │ ├── start-here-kde.png │ │ │ │ ├── start-here.png │ │ │ │ ├── stock_folder.png │ │ │ │ ├── user-desktop.png │ │ │ │ ├── user-home.png │ │ │ │ ├── user-identity.png │ │ │ │ ├── user-trash-full.png │ │ │ │ └── user-trash.png │ │ │ └── status │ │ │ │ ├── data-error.png │ │ │ │ ├── data-information.png │ │ │ │ ├── data-warning.png │ │ │ │ ├── dialog-error.png │ │ │ │ ├── dialog-information.png │ │ │ │ ├── dialog-password.png │ │ │ │ ├── dialog-warning.png │ │ │ │ ├── image-missing.png │ │ │ │ ├── mail-queued.png │ │ │ │ ├── mail-unread-new.png │ │ │ │ ├── meeting-chair.png │ │ │ │ ├── meeting-observer.png │ │ │ │ ├── meeting-organizer.png │ │ │ │ ├── meeting-participant-optional.png │ │ │ │ ├── meeting-participant-reply.png │ │ │ │ ├── meeting-participant.png │ │ │ │ ├── script-error.png │ │ │ │ ├── security-high.png │ │ │ │ ├── security-low.png │ │ │ │ ├── security-medium.png │ │ │ │ ├── user-away-extended.png │ │ │ │ ├── user-away.png │ │ │ │ ├── user-busy.png │ │ │ │ ├── user-invisible.png │ │ │ │ ├── user-offline.png │ │ │ │ ├── user-online.png │ │ │ │ ├── user-trash-full.png │ │ │ │ ├── weather-clear-night.png │ │ │ │ ├── weather-clear.png │ │ │ │ ├── weather-clouds-night.png │ │ │ │ ├── weather-clouds.png │ │ │ │ ├── weather-few-clouds-night.png │ │ │ │ ├── weather-few-clouds.png │ │ │ │ ├── weather-fog.png │ │ │ │ ├── weather-freezing-rain.png │ │ │ │ ├── weather-hail.png │ │ │ │ ├── weather-many-clouds.png │ │ │ │ ├── weather-mist.png │ │ │ │ ├── weather-overcast.png │ │ │ │ ├── weather-showers-day.png │ │ │ │ ├── weather-showers-night.png │ │ │ │ ├── weather-showers-scattered-day.png │ │ │ │ ├── weather-showers-scattered-night.png │ │ │ │ ├── weather-showers-scattered.png │ │ │ │ ├── weather-showers.png │ │ │ │ ├── weather-snow-rain.png │ │ │ │ ├── weather-snow-scattered-day.png │ │ │ │ ├── weather-snow-scattered-night.png │ │ │ │ ├── weather-snow-scattered.png │ │ │ │ ├── weather-snow.png │ │ │ │ ├── weather-storm-day.png │ │ │ │ ├── weather-storm-night.png │ │ │ │ └── weather-storm.png │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── COPYING.LIB │ │ ├── README.md │ │ └── metainfo.yaml │ ├── person.png │ ├── photos.svg │ ├── pin.png │ ├── play_buttons.gif │ ├── progressbar.gif │ ├── published.gif │ ├── radio.png │ ├── report.png │ ├── repost.svg │ ├── search_icon.png │ ├── song.jpg │ ├── supp_icons.png │ ├── support.jpeg │ ├── tour │ │ ├── adres.png │ │ ├── adres2.png │ │ ├── adres3.png │ │ ├── adres_ff.jpg │ │ ├── adres_ff_tohru.jpg │ │ ├── app1.png │ │ ├── app2.png │ │ ├── app3.png │ │ ├── app4.jpeg │ │ ├── audios.png │ │ ├── audios2.png │ │ ├── audios3.png │ │ ├── audios4.png │ │ ├── audios_playlists.png │ │ ├── audios_search.png │ │ ├── audios_upload.png │ │ ├── avatar_picker.png │ │ ├── avatars_def.png │ │ ├── avatars_quad.png │ │ ├── avatars_round.png │ │ ├── backdrop.png │ │ ├── backdrop_ex.png │ │ ├── backdrop_ex1.png │ │ ├── backdrop_ex2.png │ │ ├── groups.png │ │ ├── groups_admin.png │ │ ├── groups_view.png │ │ ├── leftmenu.png │ │ ├── leftmenu2.png │ │ ├── local_news.png │ │ ├── news_global.png │ │ ├── photos.png │ │ ├── photos2.png │ │ ├── poll.png │ │ ├── privacy.png │ │ ├── profile.png │ │ ├── reg.png │ │ ├── search.png │ │ ├── search2.png │ │ ├── search_h.png │ │ ├── theme1.png │ │ ├── theme2.png │ │ ├── theme3.png │ │ ├── theme_picker.png │ │ ├── videos.png │ │ ├── videos_a.png │ │ ├── videos_w.png │ │ ├── videos_y.png │ │ ├── vouchers.png │ │ ├── vouchers_ok.png │ │ ├── vouchers_type.png │ │ ├── wall.png │ │ ├── wall_new.png │ │ ├── wall_old.png │ │ ├── wall_pick.png │ │ ├── wordart.png │ │ └── wordart_en.png │ ├── upload.png │ ├── wall.png │ ├── xheader.png │ └── xheader_custom.png │ ├── js │ ├── GameAPI.js │ ├── al_api.js │ ├── al_comments.js │ ├── al_despacito_wall.js │ ├── al_docs.js │ ├── al_feed.js │ ├── al_games.js │ ├── al_mentions.js │ ├── al_music.js │ ├── al_navigation.js │ ├── al_notifications.js │ ├── al_notifs.js │ ├── al_photos.js │ ├── al_polls.js │ ├── al_suggestions.js │ ├── al_wall.js │ ├── l10n.js │ ├── messagebox.js │ ├── notifications.js │ ├── openvk.cls.js │ ├── package-lock.json │ ├── package.json │ ├── player.js │ ├── router.js │ ├── scroll.js │ ├── timezone.js │ ├── tour.js │ ├── utils.js │ └── vnd_literallycanvas.js │ └── video │ ├── rendering.apng │ └── rendering.mp4 ├── bootstrap.php ├── chandler_loader.php ├── composer.json ├── composer.lock ├── crowdin.yml ├── data ├── clients.xml ├── knowledgebase │ ├── about.hy.md │ ├── about.md │ ├── about.ru.md │ ├── about.uk.md │ ├── donate.md │ ├── donate.ru.md │ ├── donate.uk.md │ ├── faq.hy.md │ ├── faq.md │ ├── faq.ru.md │ ├── faq.uk.md │ ├── notes.hy.md │ ├── notes.md │ ├── notes.ru.md │ ├── notes.uk.md │ ├── points.hy.md │ ├── points.md │ ├── points.ru.md │ ├── points.uk.md │ ├── privacy.hy.md │ ├── privacy.md │ ├── privacy.ru.md │ ├── privacy.uk.md │ ├── rules.hy.md │ ├── rules.md │ ├── rules.ru.md │ └── rules.uk.md ├── modelCodes.json └── photosizes.xml ├── install ├── automated │ ├── common │ │ ├── 02-rewrite.conf │ │ ├── 10-openvk.conf │ │ ├── autoexec │ │ ├── chandler.yml │ │ ├── create_db.service │ │ ├── httpd-php.conf │ │ ├── httpd.conf │ │ ├── mk_db.sql │ │ └── openvk.template.yml │ ├── docker │ │ ├── Readme.md │ │ ├── acl_handler.sh │ │ ├── base-php-apache.Dockerfile │ │ ├── base-php-cli.Dockerfile │ │ ├── chandler.example.yml │ │ ├── docker-compose.dev.yml │ │ ├── docker-compose.yml │ │ ├── mariadb-eventdb.Dockerfile │ │ ├── mariadb-primary.Dockerfile │ │ ├── openvk.Dockerfile │ │ └── openvk.example.yml │ ├── freebsd-13 │ │ └── install │ └── kubernetes │ │ ├── README.md │ │ └── manifests │ │ ├── 000-ns.yaml │ │ ├── 001-configmap.yaml │ │ ├── 002-pvc.yaml │ │ ├── 003-deployment.yaml │ │ ├── 004-svc.yaml │ │ ├── 005-ingress.yaml │ │ └── 006-kafka-values.yaml ├── init-event-db.sql ├── init-migration-table-event.sql ├── init-migration-table.sql ├── init-static-db.sql └── sqls │ ├── 00000-gifts.sql │ ├── 00001-unlisted-videos.sql │ ├── 00002-support-aliases.sql │ ├── 00003-user-alerts.sql │ ├── 00004-kromer-typechange.sql │ ├── 00005-administrators-list.sql │ ├── 00006-group-owner-comment.sql │ ├── 00007-hidden-admins.sql │ ├── 00008-website-contact.sql │ ├── 00009-pinned-clubs.sql │ ├── 00010-pinned-posts.sql │ ├── 00011-anonymous-posting.sql │ ├── 00012-support-better-greetings.sql │ ├── 00013-2fa.sql │ ├── 00014-group-discussions.sql │ ├── 00015-helpdesk-answers-evaluvating.sql │ ├── 00016-place-of-topic-list-setting.sql │ ├── 00017-allow-to-hide-groups-from-global-feed.sql │ ├── 00018-email-verification.sql │ ├── 00019-reports.sql │ ├── 00020-block-in-support.sql │ ├── 00021-image-sizes.sql │ ├── 00022-video-processing.sql │ ├── 00023-group-alerts.sql │ ├── 00024-email-change.sql │ ├── 00025-main-page-setting.sql │ ├── 00026-toncoin-fetching.sql │ ├── 00027-better-birthdays.sql │ ├── 00028-rating.sql │ ├── 00029-deactivation.sql │ ├── 00030-hashtag-search.sql │ ├── 00031-apps.sql │ ├── 00032-ban-page-until.sql │ ├── 00033-agent-card.sql │ ├── 00034-banned-urls.sql │ ├── 00035-better-reports.sql │ ├── 00036-shortcode-aliases.sql │ ├── 00037-polls.sql │ ├── 00038-backdrops.sql │ ├── 00039-platforms.sql │ ├── 00040-noSpam-templates.sql │ ├── 00041-music.sql │ ├── 00042-marital-status-user.sql │ ├── 00043-suggest-posts.sql │ ├── 00044-close-profiles.sql │ ├── 00045-enforce-hiding-from-global-feed.sql │ ├── 00046-deny-request.sql │ ├── 00047-unlisted-playlists.sql │ ├── 00048-posts-source.sql │ ├── 00049-ignored-sources.sql │ ├── 00050-new-video-fields.sql │ ├── 00051-posts-geo.sql │ ├── 00052-blacklist.sql │ ├── 00053-new-fields.sql │ ├── 00054-docs.sql │ ├── 00055-agent-card-fix.sql │ ├── 00056-hide-from-global-feed-user.sql │ └── eventdb │ └── 00000-notifications-emoji-support.sql ├── locales ├── README.md ├── by.strings ├── by_lat.strings ├── de.strings ├── en.strings ├── eo.strings ├── hy.strings ├── id.strings ├── kk.strings ├── list.yml ├── pl.strings ├── qqx.strings ├── ru.strings ├── ru_lat.strings ├── ru_old.strings ├── ru_sov.strings ├── sr_cyr.strings ├── sr_lat.strings ├── tr.strings ├── udm.strings └── uk.strings ├── manifest.yml ├── misc └── install_err.phtml ├── openvk-example.yml ├── openvkctl ├── openvkctl.cmd ├── phpstan.neon ├── quirks.yml ├── storage └── .gitkeep ├── themepacks ├── .gitkeep ├── midnight │ ├── README.md │ ├── res │ │ ├── backdrop-editor.gif │ │ ├── checkbox.png │ │ ├── flex_arrow_open.png │ │ ├── flex_arrow_shut.gif │ │ ├── header.png │ │ ├── header_custom.png │ │ ├── header_purple.png │ │ ├── input_clear.gif │ │ ├── like.gif │ │ ├── pin.png │ │ ├── published.gif │ │ ├── radio.png │ │ ├── xheader.png │ │ ├── xheader_custom.png │ │ └── xmas.css │ ├── stylesheet.css │ └── theme.yml ├── openvk_modern │ ├── res │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── xmas.css │ ├── stylesheet.css │ └── theme.yml ├── readme.md └── readme.ru.md └── tmp └── api-storage ├── audios └── .gitkeep ├── photos └── .gitkeep └── videos └── .gitkeep /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: "https://ovk.to/donate" 2 | -------------------------------------------------------------------------------- /Web/Models/sql/mysql-msg-fix.tsql: -------------------------------------------------------------------------------- 1 | SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY','')); -------------------------------------------------------------------------------- /Web/Presenters/templates/components/nothing.xml: -------------------------------------------------------------------------------- 1 | {include "error.xml", description => tr("no_data_description")} 2 | -------------------------------------------------------------------------------- /Web/static/audio/nomusic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/audio/nomusic.mp3 -------------------------------------------------------------------------------- /Web/static/audio/notify.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/audio/notify.mp3 -------------------------------------------------------------------------------- /Web/static/img/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/arrows.png -------------------------------------------------------------------------------- /Web/static/img/banned.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/banned.jpg -------------------------------------------------------------------------------- /Web/static/img/bsdn/pause.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/bsdn/pause.gif -------------------------------------------------------------------------------- /Web/static/img/bsdn/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/bsdn/play.png -------------------------------------------------------------------------------- /Web/static/img/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/bullet.gif -------------------------------------------------------------------------------- /Web/static/img/camera_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/camera_200.png -------------------------------------------------------------------------------- /Web/static/img/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/checkmark.png -------------------------------------------------------------------------------- /Web/static/img/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/divider.png -------------------------------------------------------------------------------- /Web/static/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/edit.png -------------------------------------------------------------------------------- /Web/static/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/error.png -------------------------------------------------------------------------------- /Web/static/img/escargot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/escargot.gif -------------------------------------------------------------------------------- /Web/static/img/flags/am.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/am.gif -------------------------------------------------------------------------------- /Web/static/img/flags/bs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/bs.gif -------------------------------------------------------------------------------- /Web/static/img/flags/bt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/bt.gif -------------------------------------------------------------------------------- /Web/static/img/flags/bv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/bv.gif -------------------------------------------------------------------------------- /Web/static/img/flags/bw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/bw.gif -------------------------------------------------------------------------------- /Web/static/img/flags/by.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/by.gif -------------------------------------------------------------------------------- /Web/static/img/flags/bz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/bz.gif -------------------------------------------------------------------------------- /Web/static/img/flags/ca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/ca.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cc.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cd.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cf.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cg.gif -------------------------------------------------------------------------------- /Web/static/img/flags/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/ch.gif -------------------------------------------------------------------------------- /Web/static/img/flags/ci.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/ci.gif -------------------------------------------------------------------------------- /Web/static/img/flags/ck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/ck.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cl.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cm.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cn.gif -------------------------------------------------------------------------------- /Web/static/img/flags/co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/co.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cr.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cs.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cu.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cv.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cx.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cy.gif -------------------------------------------------------------------------------- /Web/static/img/flags/cz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/cz.gif -------------------------------------------------------------------------------- /Web/static/img/flags/de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/de.gif -------------------------------------------------------------------------------- /Web/static/img/flags/dj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/dj.gif -------------------------------------------------------------------------------- /Web/static/img/flags/dk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/dk.gif -------------------------------------------------------------------------------- /Web/static/img/flags/dm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/dm.gif -------------------------------------------------------------------------------- /Web/static/img/flags/do.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/do.gif -------------------------------------------------------------------------------- /Web/static/img/flags/dz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/dz.gif -------------------------------------------------------------------------------- /Web/static/img/flags/ec.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/ec.gif -------------------------------------------------------------------------------- /Web/static/img/flags/ee.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/ee.gif -------------------------------------------------------------------------------- /Web/static/img/flags/eg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/eg.gif -------------------------------------------------------------------------------- /Web/static/img/flags/eh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/eh.gif -------------------------------------------------------------------------------- /Web/static/img/flags/eo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/eo.gif -------------------------------------------------------------------------------- /Web/static/img/flags/er.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/er.gif -------------------------------------------------------------------------------- /Web/static/img/flags/es.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/es.gif -------------------------------------------------------------------------------- /Web/static/img/flags/et.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/et.gif -------------------------------------------------------------------------------- /Web/static/img/flags/fam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/fam.gif -------------------------------------------------------------------------------- /Web/static/img/flags/fi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/fi.gif -------------------------------------------------------------------------------- /Web/static/img/flags/fj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/fj.gif -------------------------------------------------------------------------------- /Web/static/img/flags/fk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/fk.gif -------------------------------------------------------------------------------- /Web/static/img/flags/fm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/fm.gif -------------------------------------------------------------------------------- /Web/static/img/flags/fo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/fo.gif -------------------------------------------------------------------------------- /Web/static/img/flags/fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/fr.gif -------------------------------------------------------------------------------- /Web/static/img/flags/ga.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/ga.gif -------------------------------------------------------------------------------- /Web/static/img/flags/gb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/gb.gif -------------------------------------------------------------------------------- /Web/static/img/flags/gd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/gd.gif -------------------------------------------------------------------------------- /Web/static/img/flags/ge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/ge.gif -------------------------------------------------------------------------------- /Web/static/img/flags/gf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/gf.gif -------------------------------------------------------------------------------- /Web/static/img/flags/gh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/gh.gif -------------------------------------------------------------------------------- /Web/static/img/flags/gi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/gi.gif -------------------------------------------------------------------------------- /Web/static/img/flags/gl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/gl.gif -------------------------------------------------------------------------------- /Web/static/img/flags/gm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/gm.gif -------------------------------------------------------------------------------- /Web/static/img/flags/gn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/gn.gif -------------------------------------------------------------------------------- /Web/static/img/flags/gp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/flags/gp.gif -------------------------------------------------------------------------------- /Web/static/img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/header.png -------------------------------------------------------------------------------- /Web/static/img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/icon.ico -------------------------------------------------------------------------------- /Web/static/img/icon1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/icon1.gif -------------------------------------------------------------------------------- /Web/static/img/icon2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/icon2.gif -------------------------------------------------------------------------------- /Web/static/img/icon3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/icon3.gif -------------------------------------------------------------------------------- /Web/static/img/like.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/like.gif -------------------------------------------------------------------------------- /Web/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/logo.png -------------------------------------------------------------------------------- /Web/static/img/note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/note.gif -------------------------------------------------------------------------------- /Web/static/img/oof.apng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/oof.apng -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/CVnamespace.png: -------------------------------------------------------------------------------- 1 | system-run.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/Info-amarok.png: -------------------------------------------------------------------------------- 1 | run-build.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/accept_time_event.png: -------------------------------------------------------------------------------- 1 | appointment-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/action-albumfolder-importdir2.png: -------------------------------------------------------------------------------- 1 | folder-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/activity-fork.png: -------------------------------------------------------------------------------- 1 | fork.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/actor.png: -------------------------------------------------------------------------------- 1 | im-user.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/add-placemark.png: -------------------------------------------------------------------------------- 1 | flag-red.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/addressbook-details.png: -------------------------------------------------------------------------------- 1 | address-book-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/adress-book-new.png: -------------------------------------------------------------------------------- 1 | address-book-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/akonadi-phone-home.png: -------------------------------------------------------------------------------- 1 | go-home.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/albumfolder-importdir.png: -------------------------------------------------------------------------------- 1 | folder-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/albumfolder-importimages.png: -------------------------------------------------------------------------------- 1 | document-import.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/albumfolder-new.png: -------------------------------------------------------------------------------- 1 | folder-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/albumfolder-properties.png: -------------------------------------------------------------------------------- 1 | configure.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/albumfolder-user-trash.png: -------------------------------------------------------------------------------- 1 | edit-delete.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/align-vertical-bottom-to-anchor.png: -------------------------------------------------------------------------------- 1 | align-vertical-bottom-out.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/align-vertical-top-to-anchor.png: -------------------------------------------------------------------------------- 1 | align-horizontal-top-out.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/amarok_artist.png: -------------------------------------------------------------------------------- 1 | im-invisible-user.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/amarok_clock.png: -------------------------------------------------------------------------------- 1 | appointment-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/amarok_lyrics.png: -------------------------------------------------------------------------------- 1 | view-media-lyrics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/amarok_playcount.png: -------------------------------------------------------------------------------- 1 | view-statistics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/amarok_playlist.png: -------------------------------------------------------------------------------- 1 | view-media-playlist.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/amarok_playlist_refresh.png: -------------------------------------------------------------------------------- 1 | view-refresh.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/answer-correct.png: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/answer.png: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/application-menu.png: -------------------------------------------------------------------------------- 1 | configure.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/applications-internet.png: -------------------------------------------------------------------------------- 1 | ../places/folder-html.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/atmosphere.png: -------------------------------------------------------------------------------- 1 | ../categories/applications-internet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/audio-on.png: -------------------------------------------------------------------------------- 1 | player-volume.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bookmark-add-folder.png: -------------------------------------------------------------------------------- 1 | bookmark-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bookmark-edit.png: -------------------------------------------------------------------------------- 1 | bookmark-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bookmark-remove.png: -------------------------------------------------------------------------------- 1 | list-remove.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bookmarks.png: -------------------------------------------------------------------------------- 1 | bookmark-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/box.png: -------------------------------------------------------------------------------- 1 | draw-rectangle.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bqm-add.png: -------------------------------------------------------------------------------- 1 | list-add.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bqm-addqueue.png: -------------------------------------------------------------------------------- 1 | list-add.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bqm-commit.png: -------------------------------------------------------------------------------- 1 | go-up.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bqm-diff.png: -------------------------------------------------------------------------------- 1 | run-build.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bqm-remove.png: -------------------------------------------------------------------------------- 1 | edit-delete.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bqm-rmqueue.png: -------------------------------------------------------------------------------- 1 | edit-delete.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/bqm-update.png: -------------------------------------------------------------------------------- 1 | go-down.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/cards-block.png: -------------------------------------------------------------------------------- 1 | dialog-cancel.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/checkmark.png: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/choice-round.png: -------------------------------------------------------------------------------- 1 | draw-circle.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/chronometer-lap.png: -------------------------------------------------------------------------------- 1 | chronometer.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/chronometer-reset.png: -------------------------------------------------------------------------------- 1 | view-refresh.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/chronometer-start.png: -------------------------------------------------------------------------------- 1 | player-time.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/class-or-package.png: -------------------------------------------------------------------------------- 1 | code-block.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/class.png: -------------------------------------------------------------------------------- 1 | code-class.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/clock-large.png: -------------------------------------------------------------------------------- 1 | appointment-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/clock.png: -------------------------------------------------------------------------------- 1 | appointment-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/collection-rescan-amarok.png: -------------------------------------------------------------------------------- 1 | view-refresh.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/color-fill.png: -------------------------------------------------------------------------------- 1 | fill-color.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/color-management.png: -------------------------------------------------------------------------------- 1 | fill-color.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/colormanagement.png: -------------------------------------------------------------------------------- 1 | fill-color.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/component.png: -------------------------------------------------------------------------------- 1 | address-book-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/cursor-arrow.png: -------------------------------------------------------------------------------- 1 | edit-select.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/datatype.png: -------------------------------------------------------------------------------- 1 | code-typedef.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/dialog-align-and-distribute.png: -------------------------------------------------------------------------------- 1 | align-horizontal-left.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/dialog-fill-and-stroke.png: -------------------------------------------------------------------------------- 1 | fill-color.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/dialog-filters.png: -------------------------------------------------------------------------------- 1 | view-filter.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/dialog-icon-preview.png: -------------------------------------------------------------------------------- 1 | document-preview-archive.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/dialog-memory.png: -------------------------------------------------------------------------------- 1 | view-statistics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/dialog-object-properties.png: -------------------------------------------------------------------------------- 1 | configure.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/dialog-transform.png: -------------------------------------------------------------------------------- 1 | transform-scale.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/dirsync.png: -------------------------------------------------------------------------------- 1 | folder-sync.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/distribute-horizontal-gaps.png: -------------------------------------------------------------------------------- 1 | distribute-horizontal-x.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/distribute-horizontal.png: -------------------------------------------------------------------------------- 1 | distribute-horizontal-x.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/distribute-vertical-gaps.png: -------------------------------------------------------------------------------- 1 | distribute-vertical-y.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/distribute-vertical.png: -------------------------------------------------------------------------------- 1 | distribute-vertical-y.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/document-cleanup.png: -------------------------------------------------------------------------------- 1 | edit-clear.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/document-export-ocal.png: -------------------------------------------------------------------------------- 1 | document-export.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/document-import-ocal.png: -------------------------------------------------------------------------------- 1 | document-import.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/document-multiple.png: -------------------------------------------------------------------------------- 1 | edit-copy.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/document-new-from-template.png: -------------------------------------------------------------------------------- 1 | document-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/document-share.png: -------------------------------------------------------------------------------- 1 | document-export.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/download-amarok.png: -------------------------------------------------------------------------------- 1 | download.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/draw-eraser-delete-objects.png: -------------------------------------------------------------------------------- 1 | edit-delete.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/edit-download.png: -------------------------------------------------------------------------------- 1 | download.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/edit-duplicate.png: -------------------------------------------------------------------------------- 1 | edit-copy.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/edit-entry.png: -------------------------------------------------------------------------------- 1 | document-edit.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/edit-map.png: -------------------------------------------------------------------------------- 1 | document-edit.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/edit-undo-history.png: -------------------------------------------------------------------------------- 1 | appointment-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/editimage.png: -------------------------------------------------------------------------------- 1 | document-edit.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/editor.png: -------------------------------------------------------------------------------- 1 | document-edit.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/end_of_life.png: -------------------------------------------------------------------------------- 1 | dialog-cancel.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/end_state.png: -------------------------------------------------------------------------------- 1 | media-skip-forward.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/enum.png: -------------------------------------------------------------------------------- 1 | code-variable.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/error.png: -------------------------------------------------------------------------------- 1 | dialog-cancel.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/exifinfo.png: -------------------------------------------------------------------------------- 1 | help-about.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/file-zoom-in.png: -------------------------------------------------------------------------------- 1 | zoom-in.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/file-zoom-out.png: -------------------------------------------------------------------------------- 1 | zoom-out.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/filename-composer-amarok.png: -------------------------------------------------------------------------------- 1 | document-edit-sign.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/filename-ignore-amarok.png: -------------------------------------------------------------------------------- 1 | dialog-cancel.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/filename-last-played.png: -------------------------------------------------------------------------------- 1 | view-calendar-timeline.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/filename-sample-rate.png: -------------------------------------------------------------------------------- 1 | view-media-visualization.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/filename-year-amarok.png: -------------------------------------------------------------------------------- 1 | view-calendar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/fileview-preview.png: -------------------------------------------------------------------------------- 1 | view-preview.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/flag.png: -------------------------------------------------------------------------------- 1 | flag-green.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/followmouse.png: -------------------------------------------------------------------------------- 1 | edit-select.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/format-fill-color.png: -------------------------------------------------------------------------------- 1 | fill-color.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/geany-build.png: -------------------------------------------------------------------------------- 1 | run-build.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/geany-close-all.png: -------------------------------------------------------------------------------- 1 | window-close.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/geany-save-all.png: -------------------------------------------------------------------------------- 1 | document-save-all.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/globe.png: -------------------------------------------------------------------------------- 1 | ../places/folder-html.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/go-home-large.png: -------------------------------------------------------------------------------- 1 | go-home.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gpg.png: -------------------------------------------------------------------------------- 1 | document-decrypt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gpgsm.png: -------------------------------------------------------------------------------- 1 | document-decrypt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/group-edit.png: -------------------------------------------------------------------------------- 1 | document-edit.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/group-new.png: -------------------------------------------------------------------------------- 1 | folder-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-add.png: -------------------------------------------------------------------------------- 1 | list-add.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-apply.png: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-bold.png: -------------------------------------------------------------------------------- 1 | format-text-bold.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-cancel.png: -------------------------------------------------------------------------------- 1 | dialog-cancel.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-cdrom.png: -------------------------------------------------------------------------------- 1 | tools-media-optical-format.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-clear.png: -------------------------------------------------------------------------------- 1 | edit-clear.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-close.png: -------------------------------------------------------------------------------- 1 | window-close.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-color-picker.png: -------------------------------------------------------------------------------- 1 | color-picker.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-connect.png: -------------------------------------------------------------------------------- 1 | network-connect.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-disconnect.png: -------------------------------------------------------------------------------- 1 | network-disconnect.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-edit.png: -------------------------------------------------------------------------------- 1 | document-edit.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-execute.png: -------------------------------------------------------------------------------- 1 | system-run.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-floppy.png: -------------------------------------------------------------------------------- 1 | document-save.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-no.png: -------------------------------------------------------------------------------- 1 | window-close.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-ok.png: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-properties.png: -------------------------------------------------------------------------------- 1 | configure.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-quit.png: -------------------------------------------------------------------------------- 1 | application-exit.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-select-color.png: -------------------------------------------------------------------------------- 1 | color-picker.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-select-font.png: -------------------------------------------------------------------------------- 1 | draw-text.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-stop.png: -------------------------------------------------------------------------------- 1 | dialog-cancel.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-undelete-ltr.png: -------------------------------------------------------------------------------- 1 | edit-undo.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-undelete-rtl.png: -------------------------------------------------------------------------------- 1 | edit-redo.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/gtk-yes.png: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/guides.png: -------------------------------------------------------------------------------- 1 | snap-guideline.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/help-keybord-shortcuts.png: -------------------------------------------------------------------------------- 1 | ../categories/applications-system.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/hint.png: -------------------------------------------------------------------------------- 1 | layer-visible-off.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/identity.png: -------------------------------------------------------------------------------- 1 | address-book-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/im-irc.png: -------------------------------------------------------------------------------- 1 | list-add.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/im-skype.png: -------------------------------------------------------------------------------- 1 | call-start.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/initial_state.png: -------------------------------------------------------------------------------- 1 | media-skip-backward.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/insert-table-row.png: -------------------------------------------------------------------------------- 1 | edit-table-insert-row-above.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/interface.png: -------------------------------------------------------------------------------- 1 | edit-guides.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/internet-amarok.png: -------------------------------------------------------------------------------- 1 | ../places/folder-html.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/irc-channel-active.png: -------------------------------------------------------------------------------- 1 | irc-join-channel.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/irc-channel-inactive.png: -------------------------------------------------------------------------------- 1 | irc-close-channel.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-add-slide-clip.png: -------------------------------------------------------------------------------- 1 | tool-animator.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-align-bottom.png: -------------------------------------------------------------------------------- 1 | align-vertical-bottom.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-align-hor.png: -------------------------------------------------------------------------------- 1 | align-horizontal-center.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-align-left.png: -------------------------------------------------------------------------------- 1 | align-horizontal-left.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-align-right.png: -------------------------------------------------------------------------------- 1 | align-horizontal-right.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-align-top.png: -------------------------------------------------------------------------------- 1 | align-vertical-top.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-align-vert.png: -------------------------------------------------------------------------------- 1 | align-vertical-center.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-deleffect.png: -------------------------------------------------------------------------------- 1 | edit-delete.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-down.png: -------------------------------------------------------------------------------- 1 | go-down.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-select-rects.png: -------------------------------------------------------------------------------- 1 | select-rectangular.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-select-tool.png: -------------------------------------------------------------------------------- 1 | edit-select.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-show-audiothumb.png: -------------------------------------------------------------------------------- 1 | view-media-visualization.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-show-video.png: -------------------------------------------------------------------------------- 1 | ../places/folder-videos.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-snap.png: -------------------------------------------------------------------------------- 1 | snap-extension.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-spacer-tool.png: -------------------------------------------------------------------------------- 1 | transform-move.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-unlock.png: -------------------------------------------------------------------------------- 1 | document-decrypt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kdenlive-up.png: -------------------------------------------------------------------------------- 1 | go-up.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/knotes_alarm.png: -------------------------------------------------------------------------------- 1 | appointment-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/knotes_date.png: -------------------------------------------------------------------------------- 1 | view-calendar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/knotes_delete.png: -------------------------------------------------------------------------------- 1 | edit-delete.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kontes_close.png: -------------------------------------------------------------------------------- 1 | window-close.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kr_jumpback.png: -------------------------------------------------------------------------------- 1 | go-jump.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kr_setjumpback.png: -------------------------------------------------------------------------------- 1 | go-jump-definition.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kt-bandwidth-scheduler.png: -------------------------------------------------------------------------------- 1 | appointment-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kt-change-tracker.png: -------------------------------------------------------------------------------- 1 | view-refresh.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kt-check-data.png: -------------------------------------------------------------------------------- 1 | dialog-ok-apply.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kt-info-widget.png: -------------------------------------------------------------------------------- 1 | help-about.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kt-pause.png: -------------------------------------------------------------------------------- 1 | media-playback-pause.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kt-remove.png: -------------------------------------------------------------------------------- 1 | list-remove.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kt-restore-defaults.png: -------------------------------------------------------------------------------- 1 | document-revert.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kt-show-statusbar.png: -------------------------------------------------------------------------------- 1 | show-menu.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kt-start.png: -------------------------------------------------------------------------------- 1 | media-playback-start.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/kt-stop.png: -------------------------------------------------------------------------------- 1 | media-playback-stop.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/ktnef_extract_to.png: -------------------------------------------------------------------------------- 1 | archive-extract.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/labplot-auto-scale-all.png: -------------------------------------------------------------------------------- 1 | zoom-fit-best.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/labplot-auto-scale-x.png: -------------------------------------------------------------------------------- 1 | zoom-fit-width.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/labplot-auto-scale-y.png: -------------------------------------------------------------------------------- 1 | zoom-fit-height.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/labplot-cursor-arrow.png: -------------------------------------------------------------------------------- 1 | edit-select.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/labplot-transform-move.png: -------------------------------------------------------------------------------- 1 | transform-move.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/layer-rename.png: -------------------------------------------------------------------------------- 1 | document-edit.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/lighttable.png: -------------------------------------------------------------------------------- 1 | help-hint.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/lighttableadd.png: -------------------------------------------------------------------------------- 1 | list-add.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/media-playlist-repeat-amarok.png: -------------------------------------------------------------------------------- 1 | media-playlist-repeat.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/media-standard-track-progression-amarok.png: -------------------------------------------------------------------------------- 1 | format-list-ordered.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/media-track-add-amarok.png: -------------------------------------------------------------------------------- 1 | list-add.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/media-track-edit-amarok.png: -------------------------------------------------------------------------------- 1 | document-edit.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/media-track-remove-amarok.png: -------------------------------------------------------------------------------- 1 | list-remove.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/node-add.png: -------------------------------------------------------------------------------- 1 | format-add-node.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/node-break.png: -------------------------------------------------------------------------------- 1 | format-break-node.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/node-delete-segment.png: -------------------------------------------------------------------------------- 1 | format-disconnect-node.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/node-delete.png: -------------------------------------------------------------------------------- 1 | format-remove-node.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/node-join-segment.png: -------------------------------------------------------------------------------- 1 | format-connect-node.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/node-join.png: -------------------------------------------------------------------------------- 1 | format-join-node.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/note.png: -------------------------------------------------------------------------------- 1 | view-pim-notes.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-align-horizontal-center-calligra.png: -------------------------------------------------------------------------------- 1 | align-horizontal-center.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-align-horizontal-left-calligra.png: -------------------------------------------------------------------------------- 1 | align-horizontal-left.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-align-horizontal-right-calligra.png: -------------------------------------------------------------------------------- 1 | align-horizontal-right.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-align-vertical-bottom-calligra.png: -------------------------------------------------------------------------------- 1 | align-vertical-bottom.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-align-vertical-bottom-top-calligra.png: -------------------------------------------------------------------------------- 1 | align-vertical-bottom-out.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-align-vertical-center-calligra.png: -------------------------------------------------------------------------------- 1 | align-vertical-center.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-align-vertical-top-calligra.png: -------------------------------------------------------------------------------- 1 | align-vertical-top.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-group-calligra.png: -------------------------------------------------------------------------------- 1 | object-group.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-hidden.png: -------------------------------------------------------------------------------- 1 | layer-visible-off.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-order-back-calligra.png: -------------------------------------------------------------------------------- 1 | object-order-back.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-order-front-calligra.png: -------------------------------------------------------------------------------- 1 | object-order-front.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-order-lower-calligra.png: -------------------------------------------------------------------------------- 1 | object-order-lower.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-order-raise-calligra.png: -------------------------------------------------------------------------------- 1 | object-order-raise.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-ungroup-calligra.png: -------------------------------------------------------------------------------- 1 | object-ungroup.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-unlocked.png: -------------------------------------------------------------------------------- 1 | document-decrypt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object-visible.png: -------------------------------------------------------------------------------- 1 | layer-visible-on.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object.png: -------------------------------------------------------------------------------- 1 | object-group.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/object_node.png: -------------------------------------------------------------------------------- 1 | draw-rectangle.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/open-for-editing.png: -------------------------------------------------------------------------------- 1 | document-edit.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/package.png: -------------------------------------------------------------------------------- 1 | code-block.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/path-mode-bezier.png: -------------------------------------------------------------------------------- 1 | draw-path.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/path-mode-spiro.png: -------------------------------------------------------------------------------- 1 | draw-bezier-curves.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/photo.png: -------------------------------------------------------------------------------- 1 | view-preview.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/photos-amarok.png: -------------------------------------------------------------------------------- 1 | view-preview.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/playlist-sort.png: -------------------------------------------------------------------------------- 1 | view-sort-ascending.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/plugins.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-plugin.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/polygon-add-nodes.png: -------------------------------------------------------------------------------- 1 | format-add-node.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/polygon-merge-nodes.png: -------------------------------------------------------------------------------- 1 | format-join-node.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/postalcode.png: -------------------------------------------------------------------------------- 1 | mail-mark-unread.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/practice-setup.png: -------------------------------------------------------------------------------- 1 | configure.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/practice-start.png: -------------------------------------------------------------------------------- 1 | media-playback-start.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/practice-stop.png: -------------------------------------------------------------------------------- 1 | media-playback-stop.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/preferences-media-playback-amarok.png: -------------------------------------------------------------------------------- 1 | media-playback-start.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/quickview.png: -------------------------------------------------------------------------------- 1 | layer-visible-on.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/ratiocrop.png: -------------------------------------------------------------------------------- 1 | transform-crop.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/refactor.png: -------------------------------------------------------------------------------- 1 | view-refresh.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/region.png: -------------------------------------------------------------------------------- 1 | edit-select-all.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/relationship.png: -------------------------------------------------------------------------------- 1 | network-connect.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/remove-amarok.png: -------------------------------------------------------------------------------- 1 | list-remove.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/remove.png: -------------------------------------------------------------------------------- 1 | list-remove.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/routeplanning.png: -------------------------------------------------------------------------------- 1 | flag-green.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/run-clean.png: -------------------------------------------------------------------------------- 1 | run-build-clean.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/run-install.png: -------------------------------------------------------------------------------- 1 | run-build-install.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/search.png: -------------------------------------------------------------------------------- 1 | edit-find.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/selection-bottom.png: -------------------------------------------------------------------------------- 1 | object-order-back.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/selection-lower.png: -------------------------------------------------------------------------------- 1 | object-order-lower.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/selection-make-bitmap-copy.png: -------------------------------------------------------------------------------- 1 | view-preview.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/selection-raise.png: -------------------------------------------------------------------------------- 1 | object-order-raise.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/selection-top.png: -------------------------------------------------------------------------------- 1 | object-order-front.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/settings-configure.png: -------------------------------------------------------------------------------- 1 | configure.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/shallow-history.png: -------------------------------------------------------------------------------- 1 | appointment-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/shear.png: -------------------------------------------------------------------------------- 1 | transform-shear-left.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/show-dialogs.png: -------------------------------------------------------------------------------- 1 | show-menu.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/show-grid.png: -------------------------------------------------------------------------------- 1 | view-grid.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/show-offline.png: -------------------------------------------------------------------------------- 1 | meeting-attending-tentative.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/shuffle.png: -------------------------------------------------------------------------------- 1 | media-playlist-shuffle.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/smallclock.png: -------------------------------------------------------------------------------- 1 | appointment-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/social.png: -------------------------------------------------------------------------------- 1 | im-user.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/sort-name.png: -------------------------------------------------------------------------------- 1 | view-sort-ascending.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/sort_incr.png: -------------------------------------------------------------------------------- 1 | view-sort-ascending.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/specific-setup.png: -------------------------------------------------------------------------------- 1 | edit-copy.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/sticky_zoom.png: -------------------------------------------------------------------------------- 1 | zoom-fit-best.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/stroke-cap-bevel.png: -------------------------------------------------------------------------------- 1 | stroke-join-bevel.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/stroke-cap-miter.png: -------------------------------------------------------------------------------- 1 | stroke-join-miter.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/system-upgrade.png: -------------------------------------------------------------------------------- 1 | go-up.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tag-addressbook.png: -------------------------------------------------------------------------------- 1 | address-book-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tag-delete.png: -------------------------------------------------------------------------------- 1 | edit-delete.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tag-events.png: -------------------------------------------------------------------------------- 1 | view-calendar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tag-folder.png: -------------------------------------------------------------------------------- 1 | document-open.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tag-people.png: -------------------------------------------------------------------------------- 1 | edit-image-face-show.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tag-places.png: -------------------------------------------------------------------------------- 1 | ../places/folder-html.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tag-properties.png: -------------------------------------------------------------------------------- 1 | configure.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tag-reset.png: -------------------------------------------------------------------------------- 1 | edit-undo.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/text-convert-to-regular.png: -------------------------------------------------------------------------------- 1 | draw-text.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/text_subscript.png: -------------------------------------------------------------------------------- 1 | format-text-subscript.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/text_superscript.png: -------------------------------------------------------------------------------- 1 | format-text-superscript.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tool-measure.png: -------------------------------------------------------------------------------- 1 | measure.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tool-node-editor.png: -------------------------------------------------------------------------------- 1 | edit-node.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/tool-pointer.png: -------------------------------------------------------------------------------- 1 | edit-select.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/transform-skew-horizontal.png: -------------------------------------------------------------------------------- 1 | transform-shear-left.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/transform-skew-vertical.png: -------------------------------------------------------------------------------- 1 | transform-shear-up.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbr-coll-message-asynchronous.png: -------------------------------------------------------------------------------- 1 | mail-forwarded-replied.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbr-coll-message-synchronous.png: -------------------------------------------------------------------------------- 1 | mail-forwarded.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbr-message-asynchronous.png: -------------------------------------------------------------------------------- 1 | mail-forwarded-replied.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbr-message-found.png: -------------------------------------------------------------------------------- 1 | mail-mark-notjunk.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbr-message-lost.png: -------------------------------------------------------------------------------- 1 | mail-mark-junk.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbr-message-synchronous.png: -------------------------------------------------------------------------------- 1 | mail-forwarded.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbrello_diagram_activity.png: -------------------------------------------------------------------------------- 1 | preferences-activities.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbrello_diagram_class.png: -------------------------------------------------------------------------------- 1 | code-class.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbrello_diagram_component.png: -------------------------------------------------------------------------------- 1 | address-book-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbrello_diagram_sequence.png: -------------------------------------------------------------------------------- 1 | view-calendar-timeline.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbrello_diagram_state.png: -------------------------------------------------------------------------------- 1 | media-playback-start.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/umbrello_diagram_usecase.png: -------------------------------------------------------------------------------- 1 | im-user.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/unlock.png: -------------------------------------------------------------------------------- 1 | document-decrypt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/upcomingevents-amarok.png: -------------------------------------------------------------------------------- 1 | view-calendar-upcoming-events.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/usecase.png: -------------------------------------------------------------------------------- 1 | draw-ellipse.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/user-identity.png: -------------------------------------------------------------------------------- 1 | im-user.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/videoclip-amarok.png: -------------------------------------------------------------------------------- 1 | ../places/folder-videos.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/view-media-visualization.png: -------------------------------------------------------------------------------- 1 | fill-color.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/viewimage.png: -------------------------------------------------------------------------------- 1 | view-preview.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/visibility.png: -------------------------------------------------------------------------------- 1 | layer-visible-on.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/window-close.png: -------------------------------------------------------------------------------- 1 | dialog-close.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/window-next.png: -------------------------------------------------------------------------------- 1 | go-next-view-page.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/window-previous.png: -------------------------------------------------------------------------------- 1 | go-previous-view-page.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/x-clementine-artist.png: -------------------------------------------------------------------------------- 1 | im-user.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/x-clementine-shuffle.png: -------------------------------------------------------------------------------- 1 | media-playlist-shuffle.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/x-shape-image.png: -------------------------------------------------------------------------------- 1 | view-preview.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/x-shape-text.png: -------------------------------------------------------------------------------- 1 | view-list-text.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/xml-node-duplicate.png: -------------------------------------------------------------------------------- 1 | edit-copy.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/zoom-double-size.png: -------------------------------------------------------------------------------- 1 | zoom-1-to-2.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/zoom-fit-drawing.png: -------------------------------------------------------------------------------- 1 | zoom-fit-best.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/zoom-fit-page.png: -------------------------------------------------------------------------------- 1 | zoom-fit-best.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/zoom-fit-selection.png: -------------------------------------------------------------------------------- 1 | zoom-fit-best.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/zoom-half-size.png: -------------------------------------------------------------------------------- 1 | zoom-2-to-1.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/zoom-in-large.png: -------------------------------------------------------------------------------- 1 | zoom-in.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/zoom-select-fit.png: -------------------------------------------------------------------------------- 1 | zoom-fit-best.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/zoom-select-x.png: -------------------------------------------------------------------------------- 1 | zoom-fit-width.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/zoom-select-y.png: -------------------------------------------------------------------------------- 1 | zoom-fit-height.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/actions/zoom.png: -------------------------------------------------------------------------------- 1 | zoom-fit-best.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/apps/internet-mail.png: -------------------------------------------------------------------------------- 1 | ../actions/view-pim-mail.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/apps/kbugbuster.png: -------------------------------------------------------------------------------- 1 | ../actions/tools-report-bug.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/apps/kde.png: -------------------------------------------------------------------------------- 1 | ../animations/process-idle-kde.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/apps/kdeconnect.png: -------------------------------------------------------------------------------- 1 | ../devices/smartphone.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/apps/knetattach.png: -------------------------------------------------------------------------------- 1 | ../actions/folder-new.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/apps/plasmagik.png: -------------------------------------------------------------------------------- 1 | ../actions/tools-wizard.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/apps/preferences-system-performance.png: -------------------------------------------------------------------------------- 1 | preferences-desktop-launch-feedback.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/apps/preferences-system-session-services.png: -------------------------------------------------------------------------------- 1 | ../actions/services.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/categories/applications-education-language.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-desktop-locale.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/categories/applications-education-mathematics.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-kcalc-constants.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/categories/preferences-devices-printer.png: -------------------------------------------------------------------------------- 1 | ../devices/printer.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/hands-free.png: -------------------------------------------------------------------------------- 1 | smartphone.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/handset.png: -------------------------------------------------------------------------------- 1 | smartphone.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/headphone.png: -------------------------------------------------------------------------------- 1 | audio-headphones.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/headset.png: -------------------------------------------------------------------------------- 1 | audio-headset.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/input-gaming.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-desktop-gaming.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/input-mouse.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-desktop-mouse.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/internal.png: -------------------------------------------------------------------------------- 1 | audio-card.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/microphone.png: -------------------------------------------------------------------------------- 1 | audio-input-microphone.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/portable.png: -------------------------------------------------------------------------------- 1 | ../apps/ksniffer.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/speaker.png: -------------------------------------------------------------------------------- 1 | ../actions/speaker.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/tv.png: -------------------------------------------------------------------------------- 1 | video-television.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/devices/webcam.png: -------------------------------------------------------------------------------- 1 | camera-web.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/emblems/emblem-added.png: -------------------------------------------------------------------------------- 1 | ../actions/list-add.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/emblems/emblem-remove.png: -------------------------------------------------------------------------------- 1 | ../actions/list-remove.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/emblems/media-mount.png: -------------------------------------------------------------------------------- 1 | emblem-mounted.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-atom+xml.png: -------------------------------------------------------------------------------- 1 | application-rss+xml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-ogg.png: -------------------------------------------------------------------------------- 1 | audio-x-flac+ogg.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-pgp.png: -------------------------------------------------------------------------------- 1 | application-pgp-signature.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-pkcs7-mime.png: -------------------------------------------------------------------------------- 1 | application-pgp-keys.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-pkcs7-signature.png: -------------------------------------------------------------------------------- 1 | application-pgp-signature.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd-rar.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.oasis.opendocument.draw.template.png: -------------------------------------------------------------------------------- 1 | application-vnd.sun.xml.draw.template.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.oasis.opendocument.drawing.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.draw.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.oasis.opendocument.text.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.text-master.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.stardivision.calc.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.stardivision.draw.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.stardivision.math.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.sun.xml.calc.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.sun.xml.draw.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.sun.xml.impress.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.presentation.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.sun.xml.math.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.sun.xml.writer.global.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.text-master.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-vnd.sun.xml.writer.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.text-master.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-abiword.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.text-master.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-ace.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-applix-spreadsheet.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-arc.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-archive.png: -------------------------------------------------------------------------------- 1 | application-x-ar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-arj.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-bzip-compressed-tar.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-compress.png: -------------------------------------------------------------------------------- 1 | application-x-bzip.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-cpio.png: -------------------------------------------------------------------------------- 1 | application-x-ar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-executable.png: -------------------------------------------------------------------------------- 1 | application-x-desktop.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-flash-video.png: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-font-pcf.png: -------------------------------------------------------------------------------- 1 | application-x-font-bdf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-font-snf.png: -------------------------------------------------------------------------------- 1 | application-x-font-bdf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-font-type1.png: -------------------------------------------------------------------------------- 1 | application-x-font-afm.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-gnumeric.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-gzdvi.png: -------------------------------------------------------------------------------- 1 | application-x-bzdvi.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-gzip.png: -------------------------------------------------------------------------------- 1 | application-x-bzip.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-gzpostscript.png: -------------------------------------------------------------------------------- 1 | application-postscript.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-iso.png: -------------------------------------------------------------------------------- 1 | application-x-cd-image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-it87.png: -------------------------------------------------------------------------------- 1 | application-vnd.iccprofile.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-jar.png: -------------------------------------------------------------------------------- 1 | application-x-java-archive.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-java.png: -------------------------------------------------------------------------------- 1 | application-x-java-applet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-javascript.png: -------------------------------------------------------------------------------- 1 | application-javascript.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-kdenlivetitle.png: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-kexiproject-sqlite.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-kexiproject-sqlite2.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-kexiproject-sqlite3.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-kformula.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-kontour.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.graphics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-kword.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.text-master.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-lha.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-lzma-compressed-tar.png: -------------------------------------------------------------------------------- 1 | application-x-ar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-lzop.png: -------------------------------------------------------------------------------- 1 | application-x-bzip.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-mimearchive.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.mail.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-mplayer2.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-ms-dos-executable.png: -------------------------------------------------------------------------------- 1 | application-x-executable-script.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-object.png: -------------------------------------------------------------------------------- 1 | application-octet-stream.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-pak.png: -------------------------------------------------------------------------------- 1 | application-x-bzip.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-pem-key.png: -------------------------------------------------------------------------------- 1 | application-pgp-keys.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-python-bytecode.png: -------------------------------------------------------------------------------- 1 | application-octet-stream.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-quattropro.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-rar.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-raw-disk-image.png: -------------------------------------------------------------------------------- 1 | application-x-cd-image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-sharedlib.png: -------------------------------------------------------------------------------- 1 | application-octet-stream.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-shockwave-flash.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-siag.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-sif.png: -------------------------------------------------------------------------------- 1 | application-x-wmf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-sqlite2.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-sqlite3.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-srtrip.png: -------------------------------------------------------------------------------- 1 | application-x-srt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-subrip.png: -------------------------------------------------------------------------------- 1 | application-x-srt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-tar.png: -------------------------------------------------------------------------------- 1 | application-x-ar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-tarz.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-tgif.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.graphics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-tzo.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-wmf.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.graphics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-x-zoo.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-xml.png: -------------------------------------------------------------------------------- 1 | application-xhtml+xml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-xslt+xml.png: -------------------------------------------------------------------------------- 1 | application-x-mswinurl.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/application-zip.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-mp2.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-mp3.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-mp4.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-prs.sid.png: -------------------------------------------------------------------------------- 1 | audio-midi.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-vn.rn-realmedia.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-vnd.rn-realvideo.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-x-adpcm.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-x-aiff.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-x-flac+ogg.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-x-flac.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-x-generic.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-x-monkey.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-x-mp2.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/audio-x-wav.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/encrypted.png: -------------------------------------------------------------------------------- 1 | application-pgp-keys.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/fonts-package.png: -------------------------------------------------------------------------------- 1 | application-x-font-afm.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-bmp.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-gif.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-jpeg.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-jpeg2000.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-png.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-svg+xml-compressed.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.graphics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-svg+xml.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.graphics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-tiff.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-vnd.adobe.photoshop.png: -------------------------------------------------------------------------------- 1 | application-x-krita.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-adobe-dng.png: -------------------------------------------------------------------------------- 1 | application-x-egon.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-compressed-xcf.png: -------------------------------------------------------------------------------- 1 | application-x-bzip-compressed-tar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-emf.png: -------------------------------------------------------------------------------- 1 | application-x-wmf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-generic.png: -------------------------------------------------------------------------------- 1 | application-x-egon.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-krita.png: -------------------------------------------------------------------------------- 1 | application-x-krita.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-portable-bitmap.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-psd.png: -------------------------------------------------------------------------------- 1 | application-x-krita.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-psdimage-x-psd.png: -------------------------------------------------------------------------------- 1 | application-x-krita.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-svg+xml.png: -------------------------------------------------------------------------------- 1 | x-office-drawing.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-tga.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-win-bitmap.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-win-bmp.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-wmf.png: -------------------------------------------------------------------------------- 1 | application-x-wmf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-xcf.png: -------------------------------------------------------------------------------- 1 | application-x-krita.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/image-x-xfig.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.graphics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-database.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-drawing-template.png: -------------------------------------------------------------------------------- 1 | application-vnd.sun.xml.draw.template.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-drawing.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.draw.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-extension.png: -------------------------------------------------------------------------------- 1 | x-kde-nsplugin-generated.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-formula.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-master-document.png: -------------------------------------------------------------------------------- 1 | x-office-document.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-oasis-database.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-oasis-drawing-template.png: -------------------------------------------------------------------------------- 1 | application-vnd.sun.xml.draw.template.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-oasis-drawing.png: -------------------------------------------------------------------------------- 1 | application-vnd.sun.xml.draw.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-oasis-formula.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-oasis-master-document.png: -------------------------------------------------------------------------------- 1 | x-office-document.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-oasis-presentation.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.presentation.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-oasis-spreadsheet.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-oasis-text-template.png: -------------------------------------------------------------------------------- 1 | application-msword-template.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-oasis-text.png: -------------------------------------------------------------------------------- 1 | application-msword.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-oasis-web-template.png: -------------------------------------------------------------------------------- 1 | text-html.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-presentation.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.presentation.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-spreadsheet.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-text-template.png: -------------------------------------------------------------------------------- 1 | application-msword-template.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/libreoffice-text.png: -------------------------------------------------------------------------------- 1 | application-msword.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/mail-message-new-list.png: -------------------------------------------------------------------------------- 1 | message-x-gnu-rmail.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/message-rfc822.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.mail.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/message-x-gnu-rmail.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.mail.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/message.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.mail.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/odf.png: -------------------------------------------------------------------------------- 1 | application-msword.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/package-x-generic.png: -------------------------------------------------------------------------------- 1 | application-x-ar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-csharp.png: -------------------------------------------------------------------------------- 1 | text-x-csharp.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-css.png: -------------------------------------------------------------------------------- 1 | application-x-srt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-csv.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-enriched.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-html.png: -------------------------------------------------------------------------------- 1 | application-x-mswinurl.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-plain.png: -------------------------------------------------------------------------------- 1 | application-x-srt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-rdf.png: -------------------------------------------------------------------------------- 1 | text-rdf+xml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-rtf.png: -------------------------------------------------------------------------------- 1 | application-x-applix-word.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-sgml.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-troff.png: -------------------------------------------------------------------------------- 1 | application-x-troff-man.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-vcalendar.png: -------------------------------------------------------------------------------- 1 | text-calendar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-vnd.abc.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-vnd.wap.wml.png: -------------------------------------------------------------------------------- 1 | application-relaxng.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-authors.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-changelog.png: -------------------------------------------------------------------------------- 1 | application-x-srt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-cmake.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-copying.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-credits.png: -------------------------------------------------------------------------------- 1 | text-x-copying.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-dtd.png: -------------------------------------------------------------------------------- 1 | application-relaxng.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-generic.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-install.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-java-source.png: -------------------------------------------------------------------------------- 1 | text-x-java.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-java.png: -------------------------------------------------------------------------------- 1 | application-x-java-applet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-javascript.png: -------------------------------------------------------------------------------- 1 | application-javascript.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-katefilelist.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-log.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-makefile.png: -------------------------------------------------------------------------------- 1 | application-x-m4.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-nfo.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-objchdr.png: -------------------------------------------------------------------------------- 1 | text-x-chdr.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-objcsrc.png: -------------------------------------------------------------------------------- 1 | text-x-csrc.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-opml+xml.png: -------------------------------------------------------------------------------- 1 | application-rss+xml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-opml.png: -------------------------------------------------------------------------------- 1 | application-rss+xml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-plain.png: -------------------------------------------------------------------------------- 1 | text-x-readme.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-readme.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-script.png: -------------------------------------------------------------------------------- 1 | application-x-shellscript.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-tex.png: -------------------------------------------------------------------------------- 1 | text-x-bibtex.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-vcard.png: -------------------------------------------------------------------------------- 1 | text-x-ldif.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-x-xslfo.png: -------------------------------------------------------------------------------- 1 | application-relaxng.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-xmcd.png: -------------------------------------------------------------------------------- 1 | application-x-cda.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/text-xml.png: -------------------------------------------------------------------------------- 1 | application-xhtml+xml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/uri-mms.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/uri-mmst.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/uri-mmsu.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/uri-pnm.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/uri-rtspt.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/uri-rtspu.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-mlt-playlist.png: -------------------------------------------------------------------------------- 1 | video-webm.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-mp4.png: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-vivo.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-vnd.rn-realvideo.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-wavelet.png: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-webm.png: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-anim.png: -------------------------------------------------------------------------------- 1 | audio-vnd.rn-realvideo.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-flic.png: -------------------------------------------------------------------------------- 1 | audio-vnd.rn-realvideo.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-generic.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-google-vlc-plugin.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-javafx.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-matroska.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-mng.png: -------------------------------------------------------------------------------- 1 | application-x-egon.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-ms-wmp.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-ms-wmv.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-msvideo.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-ogm+ogg.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-theor+ogg.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-theora+ogg.png: -------------------------------------------------------------------------------- 1 | video-x-matroska.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/video-x-wmv.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/virtualbox-vhd.png: -------------------------------------------------------------------------------- 1 | application-x-smb-workgroup.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/x-mail-distribution-list.png: -------------------------------------------------------------------------------- 1 | mail-message-new-list.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/x-office-calendar.png: -------------------------------------------------------------------------------- 1 | text-calendar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/x-office-drawing.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.graphics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/x-office-presentation.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.presentation.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/mimetypes/x-office-spreadsheet.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/desktop.png: -------------------------------------------------------------------------------- 1 | user-desktop.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-cloud.png: -------------------------------------------------------------------------------- 1 | folder-network.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-download.png: -------------------------------------------------------------------------------- 1 | folder-downloads.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-dropbox.png: -------------------------------------------------------------------------------- 1 | folder-network.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-gdrive.png: -------------------------------------------------------------------------------- 1 | folder-network.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-images.png: -------------------------------------------------------------------------------- 1 | folder-image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-mail.png: -------------------------------------------------------------------------------- 1 | mail-folder-sent.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-music.png: -------------------------------------------------------------------------------- 1 | folder-sound.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-onedrive.png: -------------------------------------------------------------------------------- 1 | folder-network.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-open.png: -------------------------------------------------------------------------------- 1 | ../status/folder-open.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-owncloud.png: -------------------------------------------------------------------------------- 1 | folder-network.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-picture.png: -------------------------------------------------------------------------------- 1 | folder-pictures.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-pictures.png: -------------------------------------------------------------------------------- 1 | folder-image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-public.png: -------------------------------------------------------------------------------- 1 | folder-publicshare.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-publicshare.png: -------------------------------------------------------------------------------- 1 | folder-remote.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-script.png: -------------------------------------------------------------------------------- 1 | folder-development.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-text.png: -------------------------------------------------------------------------------- 1 | folder-txt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder-videos.png: -------------------------------------------------------------------------------- 1 | folder-video.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/folder_html.png: -------------------------------------------------------------------------------- 1 | folder-html.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/network-server.png: -------------------------------------------------------------------------------- 1 | ../mimetypes/application-x-smb-server.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/network-workgroup.png: -------------------------------------------------------------------------------- 1 | ../mimetypes/application-x-smb-workgroup.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/start-here-kde.png: -------------------------------------------------------------------------------- 1 | ../animations/process-idle-kde.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/stock_folder.png: -------------------------------------------------------------------------------- 1 | folder.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/places/user-trash-full.png: -------------------------------------------------------------------------------- 1 | ../status/user-trash-full.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/appointment-recurring.png: -------------------------------------------------------------------------------- 1 | ../actions/view-refresh.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/appointment-reminder.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-desktop-notification-bell.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/cloudstatus.png: -------------------------------------------------------------------------------- 1 | ../places/folder-cloud.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/data-error.png: -------------------------------------------------------------------------------- 1 | dialog-error.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/data-information.png: -------------------------------------------------------------------------------- 1 | ../actions/help-about.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/data-warning.png: -------------------------------------------------------------------------------- 1 | dialog-warning.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/dialog-information.png: -------------------------------------------------------------------------------- 1 | ../actions/help-about.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/dropboxstatus-busy2.png: -------------------------------------------------------------------------------- 1 | ../places/folder-cloud.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/dropboxstatus-logo.png: -------------------------------------------------------------------------------- 1 | ../places/folder-cloud.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/mail-tagged.png: -------------------------------------------------------------------------------- 1 | ../actions/feed-subscribe.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/object-locked.png: -------------------------------------------------------------------------------- 1 | ../actions/document-encrypt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/object-unlocked.png: -------------------------------------------------------------------------------- 1 | ../actions/document-decrypt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/script-error.png: -------------------------------------------------------------------------------- 1 | ../actions/tools-report-bug.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/task-recurring.png: -------------------------------------------------------------------------------- 1 | ../actions/view-refresh.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/task-reminder.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-desktop-notification-bell.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/weather-fog.png: -------------------------------------------------------------------------------- 1 | weather-mist.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/weather-overcast.png: -------------------------------------------------------------------------------- 1 | weather-many-clouds.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/weather-storm-day.png: -------------------------------------------------------------------------------- 1 | weather-storm.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/16x16/status/weather-storm-night.png: -------------------------------------------------------------------------------- 1 | weather-storm.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/actions/application-menu.png: -------------------------------------------------------------------------------- 1 | configure.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/apps/kaddressbook.png: -------------------------------------------------------------------------------- 1 | ../actions/view-pim-contacts.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/apps/kbugbuster.png: -------------------------------------------------------------------------------- 1 | ../actions/tools-report-bug.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/apps/kfind.png: -------------------------------------------------------------------------------- 1 | ../actions/system-search.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/apps/office-calendar.png: -------------------------------------------------------------------------------- 1 | korganizer.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/apps/okular.png: -------------------------------------------------------------------------------- 1 | graphics-viewer-document.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/apps/plasmagik.png: -------------------------------------------------------------------------------- 1 | ../actions/tools-wizard.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/apps/utilities-file-archiver.png: -------------------------------------------------------------------------------- 1 | ark.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/categories/applications-education-language.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-desktop-locale.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/categories/applications-education-mathematics.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-kcalc-constants.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/categories/preferences-devices-printer.png: -------------------------------------------------------------------------------- 1 | ../devices/printer.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/devices/input-gaming.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-desktop-gaming.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/devices/input-mouse.png: -------------------------------------------------------------------------------- 1 | ../apps/preferences-desktop-mouse.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/devices/microphone.png: -------------------------------------------------------------------------------- 1 | audio-input-microphone.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/devices/network-wireless.png: -------------------------------------------------------------------------------- 1 | network-wireless-connected-100.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-atom+xml.png: -------------------------------------------------------------------------------- 1 | application-rss+xml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-ogg.png: -------------------------------------------------------------------------------- 1 | audio-x-flac+ogg.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd-rar.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.oasis.opendocument.draw.template.png: -------------------------------------------------------------------------------- 1 | application-vnd.sun.xml.draw.template.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.oasis.opendocument.drawing.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.draw.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.oasis.opendocument.text.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.text-master.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.stardivision.calc.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.stardivision.draw.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.stardivision.math.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.sun.xml.calc.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.sun.xml.draw.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.sun.xml.impress.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.presentation.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.sun.xml.math.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.sun.xml.writer.global.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.text-master.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-vnd.sun.xml.writer.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.text-master.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-abiword.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.text-master.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-ace.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-applix-spreadsheet.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-arc.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-archive.png: -------------------------------------------------------------------------------- 1 | application-x-ar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-arj.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-bzip-compressed-tar.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-compress.png: -------------------------------------------------------------------------------- 1 | application-x-bzip.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-cpio.png: -------------------------------------------------------------------------------- 1 | application-x-ar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-executable.png: -------------------------------------------------------------------------------- 1 | application-x-desktop.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-flash-video.png: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-font-pcf.png: -------------------------------------------------------------------------------- 1 | application-x-font-bdf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-font-snf.png: -------------------------------------------------------------------------------- 1 | application-x-font-bdf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-font-type1.png: -------------------------------------------------------------------------------- 1 | application-x-font-afm.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-gnumeric.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-gzdvi.png: -------------------------------------------------------------------------------- 1 | application-x-bzdvi.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-gzip.png: -------------------------------------------------------------------------------- 1 | application-x-bzip.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-iso.png: -------------------------------------------------------------------------------- 1 | application-x-cd-image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-it87.png: -------------------------------------------------------------------------------- 1 | application-vnd.iccprofile.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-jar.png: -------------------------------------------------------------------------------- 1 | application-x-java-archive.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-javascript.png: -------------------------------------------------------------------------------- 1 | application-javascript.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-kdenlivetitle.png: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-kexiproject-sqlite.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-kexiproject-sqlite2.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-kexiproject-sqlite3.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-kformula.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-kword.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.text-master.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-lha.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-lzma-compressed-tar.png: -------------------------------------------------------------------------------- 1 | application-x-ar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-lzop.png: -------------------------------------------------------------------------------- 1 | application-x-bzip.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-mimearchive.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.mail.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-mplayer2.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-object.png: -------------------------------------------------------------------------------- 1 | application-octet-stream.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-pak.png: -------------------------------------------------------------------------------- 1 | application-x-bzip.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-pem-key.png: -------------------------------------------------------------------------------- 1 | application-pgp-keys.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-python-bytecode.png: -------------------------------------------------------------------------------- 1 | application-octet-stream.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-quattropro.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-rar.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-raw-disk-image.png: -------------------------------------------------------------------------------- 1 | application-x-cd-image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-sharedlib.png: -------------------------------------------------------------------------------- 1 | application-octet-stream.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-siag.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-sif.png: -------------------------------------------------------------------------------- 1 | application-x-wmf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-sqlite2.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-sqlite3.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-srtrip.png: -------------------------------------------------------------------------------- 1 | application-x-srt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-tar.png: -------------------------------------------------------------------------------- 1 | application-x-ar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-tarz.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-tgif.png: -------------------------------------------------------------------------------- 1 | application-x-kontour.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-tzo.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-wmf.png: -------------------------------------------------------------------------------- 1 | application-x-kontour.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-x-zoo.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/application-zip.png: -------------------------------------------------------------------------------- 1 | application-x-7z-compressed.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-mp2.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-mp3.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-mp4.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-prs.sid.png: -------------------------------------------------------------------------------- 1 | audio-midi.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-vn.rn-realmedia.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-vn.rn-realvideo.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-vnd.rn-realvideo.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-x-aiff.png: -------------------------------------------------------------------------------- 1 | audio-x-adpcm.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-x-flac.png: -------------------------------------------------------------------------------- 1 | audio-x-flac+ogg.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-x-generic.png: -------------------------------------------------------------------------------- 1 | audio-x-flac+ogg.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-x-monkey.png: -------------------------------------------------------------------------------- 1 | audio-x-flac+ogg.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-x-mp2.png: -------------------------------------------------------------------------------- 1 | audio-ac3.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/audio-x-wav.png: -------------------------------------------------------------------------------- 1 | audio-x-adpcm.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/fonts-package.png: -------------------------------------------------------------------------------- 1 | application-x-font-afm.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-bmp.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-gif.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-jpeg.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-jpeg2000.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-png.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-svg+xml.png: -------------------------------------------------------------------------------- 1 | application-x-kontour.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-tiff.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-vnd.adobe.photoshop.png: -------------------------------------------------------------------------------- 1 | application-x-krita.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-compressed-xcf.png: -------------------------------------------------------------------------------- 1 | application-x-bzip-compressed-tar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-emf.png: -------------------------------------------------------------------------------- 1 | application-x-wmf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-generic.png: -------------------------------------------------------------------------------- 1 | application-x-egon.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-krita.png: -------------------------------------------------------------------------------- 1 | application-x-krita.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-portable-bitmap.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-psd.png: -------------------------------------------------------------------------------- 1 | application-x-krita.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-psdimage-x-psd.png: -------------------------------------------------------------------------------- 1 | application-x-krita.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-svg+xml.png: -------------------------------------------------------------------------------- 1 | x-office-drawing.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-tga.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-win-bitmap.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-win-bmp.png: -------------------------------------------------------------------------------- 1 | image-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-wmf.png: -------------------------------------------------------------------------------- 1 | application-x-wmf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-xcf.png: -------------------------------------------------------------------------------- 1 | application-x-krita.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/image-x-xfig.png: -------------------------------------------------------------------------------- 1 | application-x-kontour.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-database.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-drawing-template.png: -------------------------------------------------------------------------------- 1 | application-vnd.sun.xml.draw.template.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-drawing.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.draw.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-extension.png: -------------------------------------------------------------------------------- 1 | x-kde-nsplugin-generated.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-formula.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-master-document.png: -------------------------------------------------------------------------------- 1 | x-office-document.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-oasis-database.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.database.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-oasis-drawing-template.png: -------------------------------------------------------------------------------- 1 | application-vnd.sun.xml.draw.template.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-oasis-drawing.png: -------------------------------------------------------------------------------- 1 | application-vnd.sun.xml.draw.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-oasis-formula.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.formula.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-oasis-master-document.png: -------------------------------------------------------------------------------- 1 | x-office-document.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-oasis-presentation.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.presentation.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-oasis-spreadsheet.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-oasis-text-template.png: -------------------------------------------------------------------------------- 1 | application-msword-template.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-oasis-text.png: -------------------------------------------------------------------------------- 1 | application-msword.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-oasis-web-template.png: -------------------------------------------------------------------------------- 1 | text-html.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-presentation.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.presentation.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-spreadsheet.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-text-template.png: -------------------------------------------------------------------------------- 1 | application-msword-template.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/libreoffice-text.png: -------------------------------------------------------------------------------- 1 | application-msword.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/message-rfc822.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.mail.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/message-x-gnu-rmail.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.mail.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/message.png: -------------------------------------------------------------------------------- 1 | application-vnd.stardivision.mail.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/odf.png: -------------------------------------------------------------------------------- 1 | application-msword.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/package-x-generic.png: -------------------------------------------------------------------------------- 1 | application-x-ar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-enriched.png: -------------------------------------------------------------------------------- 1 | application-rtf.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-html.png: -------------------------------------------------------------------------------- 1 | application-x-mswinurl.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-rdf.png: -------------------------------------------------------------------------------- 1 | text-rdf+xml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-rtf.png: -------------------------------------------------------------------------------- 1 | application-x-applix-word.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-vnd.abc.png: -------------------------------------------------------------------------------- 1 | audio-x-flac+ogg.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-vnd.wap.wml.png: -------------------------------------------------------------------------------- 1 | application-relaxng.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-changelog.png: -------------------------------------------------------------------------------- 1 | text-plain.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-credits.png: -------------------------------------------------------------------------------- 1 | text-x-copying.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-dtd.png: -------------------------------------------------------------------------------- 1 | application-relaxng.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-generic.png: -------------------------------------------------------------------------------- 1 | text-sgml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-java-source.png: -------------------------------------------------------------------------------- 1 | text-x-java.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-javascript.png: -------------------------------------------------------------------------------- 1 | application-javascript.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-nfo.png: -------------------------------------------------------------------------------- 1 | text-sgml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-objchdr.png: -------------------------------------------------------------------------------- 1 | text-x-chdr.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-objcsrc.png: -------------------------------------------------------------------------------- 1 | text-x-csrc.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-opml+xml.png: -------------------------------------------------------------------------------- 1 | application-rss+xml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-opml.png: -------------------------------------------------------------------------------- 1 | application-rss+xml.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-tex.png: -------------------------------------------------------------------------------- 1 | text-x-bibtex.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-x-xslfo.png: -------------------------------------------------------------------------------- 1 | application-relaxng.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/text-xmcd.png: -------------------------------------------------------------------------------- 1 | application-x-cda.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/uri-mmst.png: -------------------------------------------------------------------------------- 1 | uri-mms.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/uri-mmsu.png: -------------------------------------------------------------------------------- 1 | uri-mms.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/uri-pnm.png: -------------------------------------------------------------------------------- 1 | uri-mms.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/uri-rtspt.png: -------------------------------------------------------------------------------- 1 | uri-mms.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/uri-rtspu.png: -------------------------------------------------------------------------------- 1 | uri-mms.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-mlt-playlist.png: -------------------------------------------------------------------------------- 1 | video-webm.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-mp4.png: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-vivo.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-vnd.rn-realvideo.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-wavelet.png: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-webm.png: -------------------------------------------------------------------------------- 1 | application-x-shockwave-flash.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-anim.png: -------------------------------------------------------------------------------- 1 | audio-vnd.rn-realvideo.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-flic.png: -------------------------------------------------------------------------------- 1 | audio-vnd.rn-realvideo.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-generic.png: -------------------------------------------------------------------------------- 1 | application-vnd.rn-realmedia.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-google-vlc-plugin.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-javafx.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-matroska.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-mng.png: -------------------------------------------------------------------------------- 1 | application-x-egon.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-ms-wmp.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-ms-wmv.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-msvideo.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-ogm+ogg.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-theor+ogg.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-theora+ogg.png: -------------------------------------------------------------------------------- 1 | video-x-matroska.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/video-x-wmv.png: -------------------------------------------------------------------------------- 1 | video-x-generic.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/virtualbox-vhd.png: -------------------------------------------------------------------------------- 1 | application-x-smb-workgroup.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/x-mail-distribution-list.png: -------------------------------------------------------------------------------- 1 | mail-message-new-list.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/x-office-calendar.png: -------------------------------------------------------------------------------- 1 | text-vcalendar.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/x-office-drawing.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.graphics.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/x-office-presentation.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.presentation.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/mimetypes/x-office-spreadsheet.png: -------------------------------------------------------------------------------- 1 | application-vnd.oasis.opendocument.spreadsheet.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/favorites.png: -------------------------------------------------------------------------------- 1 | bookmarks.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-cloud.png: -------------------------------------------------------------------------------- 1 | folder-network.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-download.png: -------------------------------------------------------------------------------- 1 | folder-downloads.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-dropbox.png: -------------------------------------------------------------------------------- 1 | folder-network.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-gdrive.png: -------------------------------------------------------------------------------- 1 | folder-network.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-images.png: -------------------------------------------------------------------------------- 1 | folder-image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-mail.png: -------------------------------------------------------------------------------- 1 | mail-folder-sent.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-music.png: -------------------------------------------------------------------------------- 1 | folder-sound.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-onedrive.png: -------------------------------------------------------------------------------- 1 | folder-network.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-owncloud.png: -------------------------------------------------------------------------------- 1 | folder-network.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-picture.png: -------------------------------------------------------------------------------- 1 | folder-pictures.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-pictures.png: -------------------------------------------------------------------------------- 1 | folder-image.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-public.png: -------------------------------------------------------------------------------- 1 | folder-publicshare.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-publicshare.png: -------------------------------------------------------------------------------- 1 | folder-remote.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-script.png: -------------------------------------------------------------------------------- 1 | folder-development.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-text.png: -------------------------------------------------------------------------------- 1 | folder-txt.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder-videos.png: -------------------------------------------------------------------------------- 1 | folder-video.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/folder.png: -------------------------------------------------------------------------------- 1 | ../mimetypes/inode-directory.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/library-music.png: -------------------------------------------------------------------------------- 1 | folder-sound.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/start-here-kde.png: -------------------------------------------------------------------------------- 1 | ../apps/kde.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/stock_folder.png: -------------------------------------------------------------------------------- 1 | folder.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/places/user-trash-full.png: -------------------------------------------------------------------------------- 1 | ../status/user-trash-full.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/status/data-error.png: -------------------------------------------------------------------------------- 1 | dialog-error.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/status/data-information.png: -------------------------------------------------------------------------------- 1 | dialog-information.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/status/data-warning.png: -------------------------------------------------------------------------------- 1 | dialog-warning.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/status/script-error.png: -------------------------------------------------------------------------------- 1 | ../actions/tools-report-bug.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/status/weather-fog.png: -------------------------------------------------------------------------------- 1 | weather-mist.png -------------------------------------------------------------------------------- /Web/static/img/oxygen-icons/64x64/status/weather-overcast.png: -------------------------------------------------------------------------------- 1 | weather-many-clouds.png -------------------------------------------------------------------------------- /Web/static/img/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/person.png -------------------------------------------------------------------------------- /Web/static/img/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/pin.png -------------------------------------------------------------------------------- /Web/static/img/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/radio.png -------------------------------------------------------------------------------- /Web/static/img/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/report.png -------------------------------------------------------------------------------- /Web/static/img/song.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/song.jpg -------------------------------------------------------------------------------- /Web/static/img/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/upload.png -------------------------------------------------------------------------------- /Web/static/img/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/wall.png -------------------------------------------------------------------------------- /Web/static/img/xheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/Web/static/img/xheader.png -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /locales/ru.strings 3 | translation: /locales/%two_letters_code%.strings 4 | -------------------------------------------------------------------------------- /data/knowledgebase/donate.md: -------------------------------------------------------------------------------- 1 | OpenVK-KB-Heading: Donate 2 | 3 | Example donation page 4 | -------------------------------------------------------------------------------- /data/knowledgebase/donate.uk.md: -------------------------------------------------------------------------------- 1 | OpenVK-KB-Heading: Пожертвувати 2 | 3 | Приклад сторінки з інформацією про реквізити пожертвування. 4 | -------------------------------------------------------------------------------- /install/automated/common/02-rewrite.conf: -------------------------------------------------------------------------------- 1 | LoadModule rewrite_module modules/mod_rewrite.so 2 | -------------------------------------------------------------------------------- /install/sqls/00003-user-alerts.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `profiles` ADD `alert` TEXT NULL DEFAULT NULL AFTER `since`; -------------------------------------------------------------------------------- /install/sqls/00004-kromer-typechange.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `profiles` CHANGE `coins` `coins` REAL UNSIGNED NOT NULL DEFAULT '0'; 2 | -------------------------------------------------------------------------------- /install/sqls/00006-group-owner-comment.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `groups` ADD COLUMN owner_comment VARCHAR(36) AFTER owner; 2 | -------------------------------------------------------------------------------- /install/sqls/00010-pinned-posts.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `posts` ADD `pinned` BOOLEAN NOT NULL DEFAULT FALSE AFTER `ad`, ADD INDEX (`pinned`); -------------------------------------------------------------------------------- /install/sqls/00015-helpdesk-answers-evaluvating.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `tickets_comments` ADD `mark` BOOLEAN NULL DEFAULT NULL; -------------------------------------------------------------------------------- /install/sqls/00023-group-alerts.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `groups` ADD `alert` TEXT NULL DEFAULT NULL; 2 | -------------------------------------------------------------------------------- /install/sqls/00028-rating.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `profiles` ADD COLUMN `rating` bigint(20) UNSIGNED NOT NULL DEFAULT 0 AFTER `coins`; 2 | -------------------------------------------------------------------------------- /install/sqls/00030-hashtag-search.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `posts` ADD FULLTEXT `content` (`content`); -------------------------------------------------------------------------------- /install/sqls/00032-ban-page-until.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `profiles` ADD `unblock_time` BIGINT UNSIGNED DEFAULT NULL AFTER `block_reason`; 2 | -------------------------------------------------------------------------------- /install/sqls/00044-close-profiles.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `profiles` ADD `profile_type` TINYINT(1) NOT NULL DEFAULT '0' AFTER `client_name`; 2 | -------------------------------------------------------------------------------- /install/sqls/00046-deny-request.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `subscriptions` ADD `flags` tinyint(3) unsigned NOT NULL DEFAULT '0' AFTER `target` -------------------------------------------------------------------------------- /install/sqls/00047-unlisted-playlists.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `playlists` ADD `unlisted` TINYINT(1) UNSIGNED DEFAULT '0' AFTER `deleted`; 2 | -------------------------------------------------------------------------------- /install/sqls/00048-posts-source.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `posts` 2 | ADD COLUMN `source` TEXT NULL DEFAULT NULL AFTER `api_source_name`; 3 | -------------------------------------------------------------------------------- /install/sqls/00055-agent-card-fix.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `support_names` 2 | DROP PRIMARY KEY, 3 | ADD PRIMARY KEY(`id`); 4 | -------------------------------------------------------------------------------- /locales/qqx.strings: -------------------------------------------------------------------------------- 1 | /* Used for viewing message keys */ 2 | -------------------------------------------------------------------------------- /openvkctl.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | php openvkctl %* -------------------------------------------------------------------------------- /storage/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/storage/.gitkeep -------------------------------------------------------------------------------- /themepacks/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVK/openvk/b90a0fa013f58e0affc90a385875119612e3a600/themepacks/.gitkeep --------------------------------------------------------------------------------