Page MenuHomeSolus

D5180.diff
No OneTemporary

D5180.diff

This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/files/remove-analytics.patch b/files/remove-analytics.patch
--- a/files/remove-analytics.patch
+++ b/files/remove-analytics.patch
@@ -1,106 +1,137 @@
-diff -ura a/browser/lib/newNote.js b/browser/lib/newNote.js
---- a/browser/lib/newNote.js 2018-12-17 06:56:16.000000000 +0100
-+++ b/browser/lib/newNote.js 2018-12-18 09:14:38.440189997 +0100
-@@ -1,11 +1,8 @@
+From 9798ac6d5c447bee474f7e846a7ab4ecb00df4fd Mon Sep 17 00:00:00 2001
+From: "F. von Gellhorn" <flinux@vongellhorn.ch>
+Date: Mon, 28 Jan 2019 12:50:43 +0100
+Subject: [PATCH 1/1] Fix analytics
+
+---
+ browser/lib/newNote.js | 8 +--
+ browser/main/Detail/MarkdownNoteDetail.js | 6 +-
+ browser/main/Detail/SnippetNoteDetail.js | 13 ++---
+ browser/main/Detail/TagSelect.js | 2 -
+ browser/main/Main.js | 5 --
+ browser/main/NoteList/index.js | 5 +-
+ browser/main/lib/ConfigManager.js | 2 +-
+ browser/main/modals/CreateFolderModal.js | 2 -
+ .../main/modals/PreferencesModal/InfoTab.js | 58 -------------------
+ package.json | 2 -
+ 10 files changed, 12 insertions(+), 91 deletions(-)
+
+diff --git a/browser/lib/newNote.js b/browser/lib/newNote.js
+index d8ef196..45b9a7f 100644
+--- a/browser/lib/newNote.js
++++ b/browser/lib/newNote.js
+@@ -1,11 +1,10 @@
import { hashHistory } from 'react-router'
import dataApi from 'browser/main/lib/dataApi'
import ee from 'browser/main/lib/eventEmitter'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
++
export function createMarkdownNote (storage, folder, dispatch, location, params, config) {
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_MARKDOWN')
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
++
let tags = []
if (config.ui.tagNewNoteWithFilteringTags && location.pathname.match(/\/tags/)) {
-@@ -37,8 +34,6 @@
+@@ -38,8 +37,7 @@ export function createMarkdownNote (storage, folder, dispatch, location, params,
}
export function createSnippetNote (storage, folder, dispatch, location, params, config) {
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_SNIPPET')
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
++
let tags = []
if (config.ui.tagNewNoteWithFilteringTags && location.pathname.match(/\/tags/)) {
-diff -ura a/browser/main/Detail/MarkdownNoteDetail.js b/browser/main/Detail/MarkdownNoteDetail.js
---- a/browser/main/Detail/MarkdownNoteDetail.js 2018-12-17 06:56:16.000000000 +0100
-+++ b/browser/main/Detail/MarkdownNoteDetail.js 2018-12-18 09:15:07.053824657 +0100
-@@ -15,7 +15,6 @@
+diff --git a/browser/main/Detail/MarkdownNoteDetail.js b/browser/main/Detail/MarkdownNoteDetail.js
+index 040df60..9118bb5 100755
+--- a/browser/main/Detail/MarkdownNoteDetail.js
++++ b/browser/main/Detail/MarkdownNoteDetail.js
+@@ -15,7 +15,7 @@ import markdown from 'browser/lib/markdownTextHelper'
import StatusBar from '../StatusBar'
import _ from 'lodash'
import { findNoteTitle } from 'browser/lib/findNoteTitle'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
++
import ConfigManager from 'browser/main/lib/ConfigManager'
import TrashButton from './TrashButton'
import FullscreenButton from './FullscreenButton'
-@@ -124,7 +123,6 @@
+@@ -130,7 +130,7 @@ class MarkdownNoteDetail extends React.Component {
type: 'UPDATE_NOTE',
note: note
})
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
++
})
}
-@@ -163,7 +161,6 @@
+@@ -169,7 +169,7 @@ class MarkdownNoteDetail extends React.Component {
handleStarButtonClick (e) {
const { note } = this.state
- if (!note.isStarred) AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_STAR')
++
note.isStarred = !note.isStarred
-diff -ura a/browser/main/Detail/SnippetNoteDetail.js b/browser/main/Detail/SnippetNoteDetail.js
---- a/browser/main/Detail/SnippetNoteDetail.js 2018-12-17 06:56:16.000000000 +0100
-+++ b/browser/main/Detail/SnippetNoteDetail.js 2018-12-18 09:15:46.964251990 +0100
-@@ -19,7 +19,6 @@
+diff --git a/browser/main/Detail/SnippetNoteDetail.js b/browser/main/Detail/SnippetNoteDetail.js
+index 11d8ac2..6833bf5 100644
+--- a/browser/main/Detail/SnippetNoteDetail.js
++++ b/browser/main/Detail/SnippetNoteDetail.js
+@@ -19,7 +19,6 @@ import ConfigManager from 'browser/main/lib/ConfigManager'
import _ from 'lodash'
import {findNoteTitle} from 'browser/lib/findNoteTitle'
import convertModeName from 'browser/lib/convertModeName'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
+ import FullscreenButton from './FullscreenButton'
import TrashButton from './TrashButton'
import RestoreButton from './RestoreButton'
- import PermanentDeleteButton from './PermanentDeleteButton'
-@@ -140,7 +139,6 @@
+@@ -142,7 +141,7 @@ class SnippetNoteDetail extends React.Component {
type: 'UPDATE_NOTE',
note: note
})
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
++
})
}
-@@ -179,7 +177,6 @@
+@@ -181,7 +180,7 @@ class SnippetNoteDetail extends React.Component {
handleStarButtonClick (e) {
const { note } = this.state
- if (!note.isStarred) AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_STAR')
++
note.isStarred = !note.isStarred
-@@ -375,9 +372,6 @@
+@@ -377,9 +376,7 @@ class SnippetNoteDetail extends React.Component {
const mode = syntax != null ? syntax.name : null
if (mode != null) {
snippets[index].mode = mode
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('SNIPPET_LANG', {
- name: mode
- })
++
}
this.setState(state => ({note: Object.assign(state.note, {snippets: snippets})}))
-@@ -399,10 +393,6 @@
- }), () => {
+@@ -402,9 +399,7 @@ class SnippetNoteDetail extends React.Component {
this.save()
})
--
+
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('SELECT_LANG', {
- name
- })
++
}
}
-diff -ura a/browser/main/Detail/TagSelect.js b/browser/main/Detail/TagSelect.js
---- a/browser/main/Detail/TagSelect.js 2018-12-17 06:56:16.000000000 +0100
-+++ b/browser/main/Detail/TagSelect.js 2018-12-18 09:16:00.454354015 +0100
-@@ -3,7 +3,6 @@
+diff --git a/browser/main/Detail/TagSelect.js b/browser/main/Detail/TagSelect.js
+index e3d9a56..c354b82 100644
+--- a/browser/main/Detail/TagSelect.js
++++ b/browser/main/Detail/TagSelect.js
+@@ -4,7 +4,6 @@ import invertColor from 'invert-color'
import CSSModules from 'browser/lib/CSSModules'
import styles from './TagSelect.styl'
import _ from 'lodash'
@@ -108,7 +139,7 @@
import i18n from 'browser/lib/i18n'
import ee from 'browser/main/lib/eventEmitter'
import Autosuggest from 'react-autosuggest'
-@@ -27,7 +26,6 @@
+@@ -28,7 +27,6 @@ class TagSelect extends React.Component {
}
addNewTag (newTag) {
@@ -116,10 +147,11 @@
newTag = newTag.trim().replace(/ +/g, '_')
if (newTag.charAt(0) === '#') {
-diff -ura a/browser/main/Main.js b/browser/main/Main.js
---- a/browser/main/Main.js 2018-12-17 06:56:16.000000000 +0100
-+++ b/browser/main/Main.js 2018-12-18 09:16:21.980893940 +0100
-@@ -10,7 +10,6 @@
+diff --git a/browser/main/Main.js b/browser/main/Main.js
+index 26fc837..c9ac935 100644
+--- a/browser/main/Main.js
++++ b/browser/main/Main.js
+@@ -10,7 +10,6 @@ import Detail from './Detail'
import dataApi from 'browser/main/lib/dataApi'
import _ from 'lodash'
import ConfigManager from 'browser/main/lib/ConfigManager'
@@ -127,7 +159,7 @@
import eventEmitter from 'browser/main/lib/eventEmitter'
import { hashHistory } from 'react-router'
import store from 'browser/main/store'
-@@ -25,10 +24,6 @@
+@@ -25,10 +24,6 @@ class Main extends React.Component {
constructor (props) {
super(props)
@@ -138,10 +170,54 @@
const { config } = props
this.state = {
-diff -ura a/browser/main/modals/CreateFolderModal.js b/browser/main/modals/CreateFolderModal.js
---- a/browser/main/modals/CreateFolderModal.js 2018-12-17 06:56:16.000000000 +0100
-+++ b/browser/main/modals/CreateFolderModal.js 2018-12-18 09:16:35.717493677 +0100
-@@ -6,7 +6,6 @@
+diff --git a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js
+index 33a0adf..be32b96 100644
+--- a/browser/main/NoteList/index.js
++++ b/browser/main/NoteList/index.js
+@@ -16,7 +16,6 @@ import fs from 'fs'
+ import path from 'path'
+ import { hashHistory } from 'react-router'
+ import copy from 'copy-to-clipboard'
+-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
+ import Markdown from '../../lib/markdown'
+ import i18n from 'browser/lib/i18n'
+ import { confirmDeleteNote } from 'browser/lib/confirmDeleteNote'
+@@ -689,7 +688,7 @@ class NoteList extends React.Component {
+ note: newNote
+ })
+ })
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
++
+ })
+ .then(() => ee.emit('list:next'))
+ .catch((err) => {
+@@ -708,8 +707,6 @@ class NoteList extends React.Component {
+ const firstNote = selectedNotes[0]
+ const eventName = firstNote.type === 'MARKDOWN_NOTE' ? 'ADD_MARKDOWN' : 'ADD_SNIPPET'
+
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent(eventName)
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
+ dataApi
+ .createNote(storage.key, {
+ type: firstNote.type,
+diff --git a/browser/main/lib/ConfigManager.js b/browser/main/lib/ConfigManager.js
+index 8a89c9a..bf13bbb 100644
+--- a/browser/main/lib/ConfigManager.js
++++ b/browser/main/lib/ConfigManager.js
+@@ -21,7 +21,7 @@ export const DEFAULT_CONFIG = {
+ },
+ sortTagsBy: 'ALPHABETICAL', // 'ALPHABETICAL', 'COUNTER'
+ listStyle: 'DEFAULT', // 'DEFAULT', 'SMALL'
+- amaEnabled: true,
++ amaEnabled: false,
+ hotkey: {
+ toggleMain: OSX ? 'Command + Alt + L' : 'Super + Alt + E',
+ toggleMode: OSX ? 'Command + Alt + M' : 'Ctrl + M',
+diff --git a/browser/main/modals/CreateFolderModal.js b/browser/main/modals/CreateFolderModal.js
+index b061b0f..338fcf8 100644
+--- a/browser/main/modals/CreateFolderModal.js
++++ b/browser/main/modals/CreateFolderModal.js
+@@ -6,7 +6,6 @@ import dataApi from 'browser/main/lib/dataApi'
import store from 'browser/main/store'
import consts from 'browser/lib/consts'
import ModalEscButton from 'browser/components/ModalEscButton'
@@ -149,7 +225,7 @@
import i18n from 'browser/lib/i18n'
class CreateFolderModal extends React.Component {
-@@ -51,7 +50,6 @@
+@@ -51,7 +50,6 @@ class CreateFolderModal extends React.Component {
}
confirm () {
@@ -157,10 +233,11 @@
if (this.state.name.trim().length > 0) {
const { storage } = this.props
const input = {
-diff -ura a/browser/main/modals/PreferencesModal/InfoTab.js b/browser/main/modals/PreferencesModal/InfoTab.js
---- a/browser/main/modals/PreferencesModal/InfoTab.js 2018-12-17 06:56:16.000000000 +0100
-+++ b/browser/main/modals/PreferencesModal/InfoTab.js 2018-12-18 09:17:14.424024793 +0100
-@@ -3,7 +3,6 @@
+diff --git a/browser/main/modals/PreferencesModal/InfoTab.js b/browser/main/modals/PreferencesModal/InfoTab.js
+index dafabb0..6931dff 100644
+--- a/browser/main/modals/PreferencesModal/InfoTab.js
++++ b/browser/main/modals/PreferencesModal/InfoTab.js
+@@ -3,7 +3,6 @@ import CSSModules from 'browser/lib/CSSModules'
import styles from './InfoTab.styl'
import ConfigManager from 'browser/main/lib/ConfigManager'
import store from 'browser/main/store'
@@ -168,7 +245,7 @@
import _ from 'lodash'
import i18n from 'browser/lib/i18n'
-@@ -25,47 +24,6 @@
+@@ -25,47 +24,6 @@ class InfoTab extends React.Component {
e.preventDefault()
}
@@ -216,11 +293,10 @@
render () {
return (
<div styleName='root'>
-@@ -135,23 +93,6 @@
- {i18n.__('License: GPL v3')}
+@@ -141,22 +99,6 @@ class InfoTab extends React.Component {
</li>
</ul>
--
+
- <hr styleName='separate-line' />
-
- <div styleName='policy'>{i18n.__('Analytics')}</div>
@@ -240,38 +316,11 @@
</div>
)
}
-diff -ura a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js
---- a/browser/main/NoteList/index.js 2018-12-17 06:56:16.000000000 +0100
-+++ b/browser/main/NoteList/index.js 2018-12-18 09:17:36.037313386 +0100
-@@ -17,7 +17,6 @@
- import path from 'path'
- import { hashHistory } from 'react-router'
- import copy from 'copy-to-clipboard'
--import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
- import Markdown from '../../lib/markdown'
- import i18n from 'browser/lib/i18n'
- import { confirmDeleteNote } from 'browser/lib/confirmDeleteNote'
-@@ -686,7 +685,6 @@
- note: newNote
- })
- })
-- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
- })
- .catch((err) => {
- console.error('Notes could not go to trash: ' + err)
-@@ -704,8 +702,6 @@
- const firstNote = selectedNotes[0]
- const eventName = firstNote.type === 'MARKDOWN_NOTE' ? 'ADD_MARKDOWN' : 'ADD_SNIPPET'
-
-- AwsMobileAnalyticsConfig.recordDynamicCustomEvent(eventName)
-- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
- dataApi
- .createNote(storage.key, {
- type: firstNote.type,
-diff -ura a/package.json b/package.json
---- a/package.json 2018-12-17 06:56:16.000000000 +0100
-+++ b/package.json 2018-12-18 09:17:47.943964022 +0100
-@@ -52,8 +52,6 @@
+diff --git a/package.json b/package.json
+index 62a0ced..088d576 100644
+--- a/package.json
++++ b/package.json
+@@ -53,8 +53,6 @@
"@rokt33r/markdown-it-math": "^4.0.1",
"@rokt33r/season": "^5.3.0",
"@susisu/mte-kernel": "^2.0.0",
@@ -280,3 +329,6 @@
"chart.js": "^2.7.2",
"codemirror": "^5.40.2",
"codemirror-mode-elixir": "^1.1.1",
+--
+2.20.1
+
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,8 +1,8 @@
name : boostnote
-version : 0.11.12
-release : 4
+version : 0.11.13
+release : 5
source :
- - https://github.com/BoostIO/Boostnote/archive/v0.11.12.tar.gz : e329d2afe67f7e3d0b8da31b903c4c28a1f61118424692bcfd4354a414b8c9d9
+ - https://github.com/BoostIO/Boostnote/archive/v0.11.13.tar.gz : a8625f3a68091c7db5158ad122c61e902b522393ad9b8bce2b9f4d439c9bdd92
license : GPL-3.0-or-later
component : office.notes
networking : yes
@@ -29,7 +29,7 @@
- nodejs
setup : |
%patch -p1 < $pkgfiles/remove-analytics.patch
-
+
mkdir -p grunt-install
npm install --prefix grunt-install grunt-cli
build : |
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -93,7 +93,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.vscode/launch.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.vscode/tasks.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/Backers.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/FAQ.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/ISSUE_TEMPLATE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/PULL_REQUEST_TEMPLATE.md</Path>
@@ -120,6 +120,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/docs/jp/debug.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/docs/ko/build.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/docs/ko/debug.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/docs/pt_BR/build.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/docs/pt_BR/debug.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/docs/ru/build.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/docs/ru/debug.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/docs/zh_CN/build.md</Path>
@@ -999,7 +1001,151 @@
<Path fileType="data">/usr/share/boostnote/resources/app/locales/zh-CN.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/zh-TW.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@ava</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/AsyncGenerator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/AwaitValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/arrayWithHoles.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/assertThisInitialized.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/asyncGeneratorDelegate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/asyncIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/asyncToGenerator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/awaitAsyncGenerator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/classCallCheck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/classNameTDZError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/classPrivateFieldGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/classPrivateFieldLooseBase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/classPrivateFieldLooseKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/classPrivateFieldSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/classPrivateMethodGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/classPrivateMethodSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/createClass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/decorate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/defineEnumerableProperties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/defineProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/AsyncGenerator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/AwaitValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/applyDecoratedDescriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/asyncGeneratorDelegate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/asyncIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/awaitAsyncGenerator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/classCallCheck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/classNameTDZError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/classPrivateFieldGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseBase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/classPrivateFieldSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/classPrivateMethodGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/classPrivateMethodSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/createClass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/decorate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/defineEnumerableProperties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/defineProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/extends.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/inherits.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/initializerDefineProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/instanceof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/interopRequireDefault.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/interopRequireWildcard.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/iterableToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimitLoose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/jsx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/newArrowCheck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/objectSpread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/readOnlyError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/slicedToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/slicedToArrayLoose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/superPropBase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/temporalRef.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/temporalUndefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/toArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/toPrimitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/typeof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/wrapAsyncGenerator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/esm/wrapRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/extends.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/getPrototypeOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/inherits.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/inheritsLoose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/initializerDefineProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/initializerWarningHelper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/instanceof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/interopRequireDefault.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/interopRequireWildcard.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/isNativeFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/iterableToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/iterableToArrayLimitLoose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/jsx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/newArrowCheck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/nonIterableRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/nonIterableSpread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/objectSpread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/objectWithoutProperties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/readOnlyError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/setPrototypeOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/slicedToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/slicedToArrayLoose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/superPropBase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/taggedTemplateLiteralLoose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/temporalRef.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/temporalUndefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/toArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/toConsumableArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/toPrimitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/toPropertyKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/typeof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/wrapNativeSuper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/helpers/wrapRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/node_modules/regenerator-runtime/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/node_modules/regenerator-runtime/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/node_modules/regenerator-runtime/path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/node_modules/regenerator-runtime/runtime-module.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/node_modules/regenerator-runtime/runtime.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel/runtime/regenerator/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@concordance</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/README.md</Path>
@@ -1007,7 +1153,4522 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/runkit.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccessPointIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccessPointNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountCardDetailsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountConvertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountEditIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountGroupIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountHeartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountKeyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountLocationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountMultipleMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountMultiplePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountMultiplePlusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountPlusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountSearchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountSettingsVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountStarIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountStarVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccountSwitchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AccusoftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AdjustIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AirConditionerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AirballoonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AirplaneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AirplaneLandingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AirplaneOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AirplaneTakeoffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AirplayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AirportIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlarmBellIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlarmCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlarmIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlarmLightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlarmMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlarmOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlarmPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlarmSnoozeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlbumIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlertBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlertCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlertCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlertDecagramIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlertOctagonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlertOctagramIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlertOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlienIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AllInclusiveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlloIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlphaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AlphabeticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AltimeterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AmazonClouddriveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AmazonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AmbulanceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AmplifierIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AnchorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AndroidDebugBridgeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AndroidHeadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AndroidIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AndroidStudioIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AngularIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AngularjsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AnimationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AnvilIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppleFinderIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppleIosIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppleKeyboardCapsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppleKeyboardCommandIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppleKeyboardControlIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppleKeyboardOptionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppleKeyboardShiftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppleMobilemeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppleSafariIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ApplicationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppnetIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ApprovalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AppsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArchiveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrangeBringForwardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrangeBringToFrontIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrangeSendBackwardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrangeSendToBackIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowBottomLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowBottomRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowCollapseAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowCollapseDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowCollapseHorizontalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowCollapseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowCollapseLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowCollapseRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowCollapseUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowCollapseVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowCompressAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowCompressIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownBoldBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownBoldBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownBoldCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownBoldCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownBoldHexagonOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownBoldIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownDropCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownDropCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowDownThickIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowExpandAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowExpandDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowExpandHorizontalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowExpandIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowExpandLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowExpandRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowExpandUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowExpandVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftBoldBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftBoldBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftBoldCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftBoldCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftBoldHexagonOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftBoldIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftDropCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftDropCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowLeftThickIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightBoldBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightBoldBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightBoldCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightBoldCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightBoldHexagonOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightBoldIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightDropCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightDropCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowRightThickIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowTopLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowTopRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpBoldBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpBoldBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpBoldCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpBoldCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpBoldHexagonOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpBoldIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpDropCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpDropCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArrowUpThickIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ArtistIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AssistantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AsteriskIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AtIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AtlassianIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AtomIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AttachmentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AudiobookIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AugmentedRealityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AutoFixIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AutoUploadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AutorenewIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AvTimerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/AzureIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BabyBuggyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BabyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BackburgerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BackspaceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BackupRestoreIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BadmintonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BandcampIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BankIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BarcodeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BarcodeScanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BarleyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BarrelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BaseballBatIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BaseballIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BasecampIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BasketFillIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BasketIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BasketUnfillIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BasketballIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWirelessAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWirelessIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWirelessOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWireless_10Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWireless_20Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWireless_30Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWireless_40Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWireless_50Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWireless_60Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWireless_70Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWireless_80Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryChargingWireless_90Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryCharging_100Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryCharging_10Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryCharging_20Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryCharging_30Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryCharging_40Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryCharging_50Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryCharging_60Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryCharging_70Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryCharging_80Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryCharging_90Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryNegativeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryPositiveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BatteryUnknownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Battery_10Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Battery_20Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Battery_30Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Battery_40Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Battery_50Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Battery_60Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Battery_70Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Battery_80Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Battery_90Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BeachIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BeakerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BeatsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BedEmptyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BeerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BehanceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BellIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BellOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BellOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BellPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BellRingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BellRingOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BellSleepIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BetaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BibleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BikeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BinocularsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BioIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BiohazardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BitbucketIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BitcoinIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BlackMesaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BlackberryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BlenderIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BlindsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BlockHelperIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BloggerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BluetoothAudioIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BluetoothConnectIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BluetoothIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BluetoothOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BluetoothSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BluetoothTransferIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BlurIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BlurLinearIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BlurOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BlurRadialIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BombIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BombOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookMultipleVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookOpenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookOpenPageVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookOpenVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookSecureIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookUnsecureIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookmarkCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookmarkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookmarkMusicIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookmarkOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookmarkPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookmarkPlusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BookmarkRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BoomboxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BootstrapIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderAllVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderBottomIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderBottomVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderColorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderHorizontalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderInsideIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderLeftVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderNoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderNoneVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderOutsideIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderRightVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderStyleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderTopIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderTopVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BorderVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BottleWineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BowTieIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BowlIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BowlingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BoxCutterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BoxShadowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BridgeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BriefcaseCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BriefcaseDownloadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BriefcaseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BriefcaseOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BriefcaseUploadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BrightnessAutoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Brightness_1Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Brightness_2Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Brightness_3Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Brightness_4Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Brightness_5Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Brightness_6Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Brightness_7Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BroomIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BrushIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BufferIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BugIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BulletinBoardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BullhornIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BullseyeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BurstModeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BusArticulatedEndIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BusArticulatedFrontIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BusDoubleDeckerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BusSchoolIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/BusSideIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CachedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CakeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CakeLayeredIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CakeVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalculatorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarBlankIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarClockIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarEditIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarMultipleCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarQuestionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarRangeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CalendarTodayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CallMadeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CallMergeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CallMissedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CallReceivedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CallSplitIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CamcorderBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CamcorderBoxOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CamcorderIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CamcorderOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraBurstIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraEnhanceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraFrontIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraFrontVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraGoproIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraIrisIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraMeteringCenterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraMeteringMatrixIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraMeteringPartialIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraMeteringSpotIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraPartyModeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraRearIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraRearVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraSwitchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CameraTimerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CancelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CandleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CandycaneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CannabisIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarBatteryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarConnectedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarConvertableIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarConvertibleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarEstateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarHatchbackIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarPickupIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarSideIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarSportsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarWashIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CaravanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CardsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CardsOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CardsPlayingOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CardsVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CarrotIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CartOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CartOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CartPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CaseSensitiveAltIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CashIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CashMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CashUsdIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Cash_100Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CastConnectedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CastIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CastOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CastleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CatIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CctvIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CeilingLightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CellphoneAndroidIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CellphoneBasicIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CellphoneDockIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CellphoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CellphoneIphoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CellphoneLinkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CellphoneLinkOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CellphoneSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CellphoneWirelessIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CertificateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChairSchoolIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartArcIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartAreasplineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartBarIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartBarStackedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartBubbleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartDonutIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartDonutVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartGanttIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartHistogramIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartLineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartLineStackedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartLineVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartPieIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartScatterplotHexbinIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChartTimelineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxBlankCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxBlankCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxBlankIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxBlankOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxIntermediateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMarkedCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMarkedCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMarkedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMarkedOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMultipleBlankCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMultipleBlankCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMultipleBlankIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMultipleBlankOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMultipleMarkedCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMultipleMarkedCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMultipleMarkedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckboxMultipleMarkedOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CheckerboardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChemicalWeaponIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChessBishopIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChessKingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChessKnightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChessPawnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChessQueenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChessRookIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChevronDoubleDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChevronDoubleLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChevronDoubleRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChevronDoubleUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChevronDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChevronLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChevronRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChevronUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChiliHotIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChiliMediumIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChiliMildIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChipIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ChurchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CiscoWebexIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardAccountIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardArrowDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardArrowLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardCheckOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardFlowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardPulseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardPulseOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClipboardTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClippyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClockAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClockEndIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClockFastIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClockIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClockInIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClockOutIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClockStartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloseBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloseBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloseCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloseCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloseNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloseOctagonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloseOctagonOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloseOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ClosedCaptionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudBracesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudDownloadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudOffOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudOutlineOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudPrintIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudPrintOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudSyncIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudTagsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloudUploadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CloverIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeArrayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeBracesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeBracketsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeEqualIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeGreaterThanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeGreaterThanOrEqualIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeLessThanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeLessThanOrEqualIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeNotEqualIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeNotEqualVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeParenthesesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeStringIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeTagsCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodeTagsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CodepenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CoffeeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CoffeeOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CoffeeToGoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CoinIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CoinsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CollageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ColorHelperIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentAccountIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentAccountOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentAlertOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentCheckOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentPlusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentProcessingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentProcessingOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentQuestionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentQuestionOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentRemoveOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentTextMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentTextMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CommentTextOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CompareIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CompassIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CompassOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ConsoleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ConsoleLineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ConsoleNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContactMailIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContactsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContentCopyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContentCutIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContentDuplicateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContentPasteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContentSaveAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContentSaveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContentSaveOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContentSaveSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContrastBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContrastCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ContrastIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CookieIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CopyrightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CornIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CounterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CraneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CreationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CreditCardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CreditCardMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CreditCardOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CreditCardPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CreditCardScanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CropFreeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CropIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CropLandscapeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CropPortraitIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CropRotateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CropSquareIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CrosshairsGpsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CrosshairsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CrownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CubeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CubeOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CubeSendIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CubeUnfoldedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CupIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CupOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CupWaterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurlingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyBdtIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyBtcIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyChfIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyCnyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyEthIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyEurIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyGbpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyInrIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyJpyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyKrwIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyKztIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyNgnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyRubIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencySignIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyTryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyTwdIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyUsdIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CurrencyUsdOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CursorDefaultIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CursorDefaultOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CursorMoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CursorPointerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/CursorTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DatabaseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DatabaseMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DatabasePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DatabaseSearchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DebugStepIntoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DebugStepOutIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DebugStepOverIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DecagramIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DecagramOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DecimalDecreaseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DecimalIncreaseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeleteCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeleteEmptyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeleteForeverIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeleteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeleteRestoreIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeleteSweepIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeleteVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeltaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeskphoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DesktopClassicIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DesktopMacIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DesktopTowerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DetailsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeveloperBoardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DeviantartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DialpadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiamondIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiceD10Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiceD12Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiceD20Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiceD4Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiceD6Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiceD8Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiceMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Dice_1Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Dice_2Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Dice_3Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Dice_4Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Dice_5Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Dice_6Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DictionaryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DipSwitchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DirectionsForkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DirectionsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiscordIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiskAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DiskIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DisqusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DisqusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DivisionBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DivisionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DnaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DnsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DoNotDisturbIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DoNotDisturbOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DockerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DolbyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DomainIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DonkeyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DoorClosedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DoorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DoorOpenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DoorbellVideoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DotsHorizontalCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DotsHorizontalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DotsVerticalCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DotsVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DoubanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DownloadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DownloadNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DragHorizontalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DragIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DragVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DrawingBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DrawingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DribbbleBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DribbbleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DroneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DropboxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DrupalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DuckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/DumbbellIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EarHearingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EarthBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EarthBoxOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EarthIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EarthOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EdgeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EjectIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ElephantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ElevationDeclineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ElevationRiseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ElevatorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmailAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmailIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmailOpenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmailOpenOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmailOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmailSecureIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmailVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmbyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmoticonCoolIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmoticonDeadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmoticonDevilIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmoticonExcitedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmoticonHappyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmoticonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmoticonNeutralIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmoticonPoopIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmoticonSadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EmoticonTongueIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EngineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EngineOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EqualBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EqualIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EraserIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EraserVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EscalatorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EthereumIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EthernetCableIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EthernetCableOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EthernetIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EtsyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EvStationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EventbriteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EvernoteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ExclamationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ExitToAppIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ExportIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyeOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyeOffOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyeOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyeOutlineOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyePlusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyeSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyeSettingsOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyedropperIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/EyedropperVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FaceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FaceProfileIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FacebookBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FacebookIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FacebookMessengerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FactoryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FanOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FastForwardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FastForwardOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FaxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FeatherIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FerryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileAccountIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileChartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileCloudIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileCompareIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileDelimitedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileDocumentBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileDocumentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileExcelBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileExcelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileExportIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileFindIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileHiddenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileImageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileImportIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileLockIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileMusicIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilePdfBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilePdfIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilePercentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilePowerpointBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilePowerpointIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilePresentationBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileQuestionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileRestoreIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileSendIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileTreeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileVideoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileWordBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileWordIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FileXmlIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilmIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilmstripIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilmstripOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilterOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilterRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilterRemoveOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FilterVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FinanceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FindReplaceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FingerprintIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FireIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FireTruckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FirefoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FishIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlagCheckeredIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlagIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlagOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlagOutlineVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlagTriangleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlagVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlagVariantOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlashAutoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlashCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlashIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlashOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlashOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlashRedEyeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlashlightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlashlightOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlaskEmptyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlaskEmptyOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlaskIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlaskOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlattrIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlipToBackIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlipToFrontIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FloorPlanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FloppyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FlowerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderAccountIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderDownloadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderGoogleDriveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderImageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderKeyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderKeyNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderLockIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderLockOpenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderMoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderMultipleImageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderOpenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderStarIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FolderUploadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FontAwesomeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FoodAppleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FoodCroissantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FoodForkDrinkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FoodIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FoodOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FoodVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FootballAustralianIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FootballHelmetIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FootballIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ForkliftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatAlignBottomIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatAlignCenterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatAlignJustifyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatAlignLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatAlignMiddleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatAlignRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatAlignTopIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatAnnotationPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatBoldIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatClearIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatColorFillIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatColorTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatFloatCenterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatFloatLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatFloatNoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatFloatRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatFontIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHeaderDecreaseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHeaderEqualIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHeaderIncreaseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHeaderPoundIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHeader_1Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHeader_2Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHeader_3Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHeader_4Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHeader_5Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHeader_6Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHorizontalAlignCenterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHorizontalAlignLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatHorizontalAlignRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatIndentDecreaseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatIndentIncreaseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatItalicIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatLineSpacingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatLineStyleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatLineWeightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatListBulletedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatListBulletedTypeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatListChecksIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatListNumbersIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatPageBreakIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatPaintIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatParagraphIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatPilcrowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatQuoteCloseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatQuoteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatQuoteOpenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatRotate_90Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatSectionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatSizeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatStrikethroughIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatStrikethroughVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatSubscriptIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatSuperscriptIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatTextdirectionLToRIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatTextdirectionRToLIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatTitleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatUnderlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatVerticalAlignBottomIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatVerticalAlignCenterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatVerticalAlignTopIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatWrapInlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatWrapSquareIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatWrapTightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FormatWrapTopBottomIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ForumIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ForumOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ForwardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FoursquareIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FridgeFilledBottomIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FridgeFilledIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FridgeFilledTopIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FridgeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FuelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FullscreenExitIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FullscreenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FunctionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/FunctionVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GamepadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GamepadVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GarageAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GarageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GarageOpenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GasCylinderIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GasStationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GaugeEmptyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GaugeFullIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GaugeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GaugeLowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GavelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GenderFemaleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GenderMaleFemaleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GenderMaleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GenderTransgenderIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GestureDoubleTapIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GestureIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GestureSwipeDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GestureSwipeLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GestureSwipeRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GestureSwipeUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GestureTapIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GestureTwoDoubleTapIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GestureTwoTapIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GhostIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GiftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GitIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GithubBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GithubCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GithubFaceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GlassCocktailIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GlassFluteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GlassMugIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GlassStangeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GlassTulipIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GlassWineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GlassdoorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GlassesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GmailIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GnomeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GolfIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GondolaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleAnalyticsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleAssistantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleCardboardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleChromeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleCirclesCommunitiesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleCirclesExtendedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleCirclesGroupIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleCirclesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleControllerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleControllerOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleDriveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleEarthIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleGlassIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleHomeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleKeepIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleMapsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleNearbyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GooglePagesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GooglePhotosIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GooglePhysicalWebIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GooglePlayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GooglePlusBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GooglePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleTranslateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GoogleWalletIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GpuIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GradientIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GraphqlIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GreasePencilIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GridIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GridLargeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GridOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GroupIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GuitarAcousticIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GuitarElectricIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GuitarPickIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GuitarPickOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/GuyFawkesMaskIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HackernewsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HamburgerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HandPointingRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HangerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HangoutsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HarddiskIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeadphonesBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeadphonesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeadphonesOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeadphonesSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeadsetDockIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeadsetIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeadsetOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartBrokenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartHalfFullIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartHalfIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartHalfOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartHalfPartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartHalfPartOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HeartPulseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HelpBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HelpCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HelpCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HelpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HelpNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HexagonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HexagonMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HexagonOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HighDefinitionBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HighDefinitionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HighwayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HistoryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HockeyPuckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HockeySticksIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HololensIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeAccountIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeAssistantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeAutomationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeCurrencyUsdIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeHeartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeMapMarkerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeModernIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HomeVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HookIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HookOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HopsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HospitalBuildingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HospitalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HospitalMarkerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HotTubIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HotelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HouzzBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HouzzIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HuluIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HumanChildIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HumanFemaleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HumanGreetingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HumanHandsdownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HumanHandsupIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HumanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HumanMaleFemaleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HumanMaleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HumanPregnantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/HumbleBundleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/IceCreamIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageAlbumIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageAreaCloseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageAreaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageBrokenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageBrokenVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageFilterBlackWhiteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageFilterCenterFocusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageFilterCenterFocusWeakIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageFilterDramaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageFilterFramesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageFilterHdrIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageFilterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageFilterNoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageFilterTiltShiftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageFilterVintageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImageOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImagePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ImportIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InboxArrowDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InboxArrowUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InboxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InboxMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/IncognitoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InfinityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InformationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InformationOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InformationVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InstagramIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InstapaperIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InternetExplorerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/InvertColorsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ItunesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/JeepneyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/JiraIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/JqueryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/JsfiddleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/JsonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KarateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KegIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KettleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyChangeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyboardBackspaceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyboardCapsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyboardCloseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyboardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyboardOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyboardReturnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyboardTabIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KeyboardVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KickstarterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/KodiIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LabelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LabelOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LadybugIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LambdaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LampIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanConnectIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanDisconnectIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanPendingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageCIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageCppIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageCsharpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageCss3Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageGoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageHtml5Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageJavascriptIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageLuaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguagePhpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguagePythonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguagePythonTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageRIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageSwiftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LanguageTypescriptIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LaptopChromebookIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LaptopIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LaptopMacIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LaptopOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LaptopWindowsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LastfmIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LastpassIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LaunchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LavaLampIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LayersIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LayersOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LeadPencilIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LeafIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LedOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LedOnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LedOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LedStripIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LedVariantOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LedVariantOnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LedVariantOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LibraryBooksIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LibraryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LibraryMusicIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LibraryPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LifebuoyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LightbulbIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LightbulbOnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LightbulbOnOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LightbulbOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LinkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LinkOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LinkVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LinkVariantOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LinkedinBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LinkedinIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LinuxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LoadingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LockIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LockOpenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LockOpenOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LockOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LockPatternIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LockPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LockResetIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LockSmartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LockerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LockerMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LoginIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LoginVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LogoutIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LogoutVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LooksIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LoopIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LoupeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/LumxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MagnetIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MagnetOnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MagnifyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MagnifyMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MagnifyMinusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MagnifyPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MagnifyPlusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MailRuIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MailboxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MapIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MapMarkerCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MapMarkerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MapMarkerMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MapMarkerMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MapMarkerOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MapMarkerOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MapMarkerPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MapMarkerRadiusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MarginIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MarkdownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MarkerCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MarkerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MartiniIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MaterialUiIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MathCompassIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MatrixIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MaxcdnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MedicalBagIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MediumIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MemoryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MenuDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MenuDownOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MenuIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MenuLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MenuRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MenuUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MenuUpOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageBulletedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageBulletedOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageDrawIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageImageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessagePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageProcessingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageReplyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageReplyTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageSettingsVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageTextOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MessageVideoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MeteorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MetronomeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MetronomeTickIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicroSdIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicrophoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicrophoneMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicrophoneOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicrophoneOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicrophonePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicrophoneSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicrophoneVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicrophoneVariantOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicroscopeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MicrosoftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MinecraftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MinusBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MinusBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MinusCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MinusCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MinusNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MixcloudIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MixedRealityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MixerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MonitorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MonitorMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MoreIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MotorbikeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MouseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MouseOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MouseVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MouseVariantOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MoveResizeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MoveResizeVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MovieIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MovieRollIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MultiplicationBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MultiplicationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MushroomIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MushroomOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicNoteBluetoothIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicNoteBluetoothOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicNoteEighthIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicNoteHalfIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicNoteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicNoteOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicNoteQuarterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicNoteSixteenthIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicNoteWholeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/MusicOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NativescriptIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NatureIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NaturePeopleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NavigationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NearMeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NeedleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NestProtectIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NestThermostatIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NetflixIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NetworkDownloadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NetworkQuestionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NetworkUploadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NewBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NewspaperIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NfcIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NfcTapIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NfcVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NinjaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NintendoSwitchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NodejsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NoteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NoteMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NoteMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NoteOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NotePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NotePlusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NoteTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NotebookIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NotificationClearAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NpmIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NukeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NullIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NumericIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_0BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_0BoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_0BoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_1BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_1BoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_1BoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_2BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_2BoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_2BoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_3BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_3BoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_3BoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_4BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_4BoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_4BoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_5BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_5BoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_5BoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_6BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_6BoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_6BoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_7BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_7BoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_7BoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_8BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_8BoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_8BoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_9BoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_9BoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_9BoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_9PlusBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_9PlusBoxMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Numeric_9PlusBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NutIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/NutritionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OarIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OctagonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OctagonOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OctagramIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OctagramOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OdnoklassnikiIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OfficeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OilIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OilTemperatureIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OmegaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OnedriveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OnenoteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OnepasswordIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OpacityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OpenInAppIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OpenInNewIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OpenidIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OperaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OrbitIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OrnamentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OrnamentVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/OwlIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PackageDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PackageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PackageUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PackageVariantClosedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PackageVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PageFirstIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PageLastIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PageLayoutBodyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PageLayoutFooterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PageLayoutHeaderIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PageLayoutSidebarLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PageLayoutSidebarRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PaletteAdvancedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PaletteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PaletteSwatchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PandaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PandoraIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PanoramaFisheyeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PanoramaHorizontalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PanoramaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PanoramaVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PanoramaWideAngleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PaperCutVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PaperclipIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ParkingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PassportIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PatreonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PauseCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PauseCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PauseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PauseOctagonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PauseOctagonOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PawIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PawOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PaypalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PeaceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PencilBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PencilBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PencilCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PencilCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PencilIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PencilLockIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PencilOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PentagonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PentagonOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PercentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PeriodicTableCo2Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PeriodicTableIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PeriscopeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PharmacyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneBluetoothIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneClassicIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneForwardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneHangupIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneInTalkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneIncomingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneLockedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneLogIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneMissedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneOutgoingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhonePausedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhonePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneReturnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneRotateLandscapeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneRotatePortraitIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PhoneVoipIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PiBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PiIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PianoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PickaxeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PierCraneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PierIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PigIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PillIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PillarIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PinIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PinOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PineTreeBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PineTreeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PinterestBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PinterestIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PipeDisconnectedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PipeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PipeLeakIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PistolIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PistonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PizzaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlaneShieldIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlayBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlayCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlayCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlayNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlayPauseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlayProtectedContentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlaylistCheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlaylistMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlaylistPlayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlaylistPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlaylistRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlaystationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlexIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlusBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlusBoxOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlusCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlusCircleMultipleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlusCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlusNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlusOneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PlusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PocketIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PokeballIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PokerChipIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PolaroidIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PollBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PollIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PolymerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PoolIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PopcornIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PotIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PotMixIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PoundBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PoundIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PowerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PowerPlugIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PowerPlugOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PowerSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PowerSocketEuIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PowerSocketIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PowerSocketUkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PowerSocketUsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PrescriptionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PresentationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PresentationPlayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PrinterAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PrinterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PrinterSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Printer_3dIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PriorityHighIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PriorityLowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ProfessionalHexagonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ProjectorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ProjectorScreenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PublishIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PulseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/PuzzleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/QqchatIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/QrcodeEditIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/QrcodeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/QrcodeScanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/QuadcopterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/QualityHighIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/QuicktimeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RadarIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RadiatorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RadioHandheldIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RadioIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RadioTowerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RadioactiveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RadioboxBlankIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RadioboxMarkedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RaspberrypiIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RayEndArrowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RayEndIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RayStartArrowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RayStartEndIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RayStartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RayVertexIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RdioIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReactIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReadabilityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReceiptIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RecordIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RecordRecIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RecycleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RedditIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RedoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RedoVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RefreshIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RegexIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RelativeScaleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReloadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReminderIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RemoteDesktopIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RemoteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RenameBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReorderHorizontalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReorderVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RepeatIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RepeatOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RepeatOnceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReplayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReplyAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReplyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ReproductionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ResizeBottomRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ResponsiveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RestartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RestoreIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RewindIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RewindOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RhombusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RhombusOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RibbonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RiceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RoadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RoadVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RobotIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RocketIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RoomServiceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RoombaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RotateLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RotateLeftVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RotateRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RotateRightVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Rotate_3dIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Rotate_90Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RoundedCornerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RouterWirelessIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RoutesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RowingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RssBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RssIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RulerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RunFastIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/RunIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SaleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SalesforceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SassIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SatelliteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SatelliteVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SausageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SaxophoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ScaleBalanceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ScaleBathroomIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ScaleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ScannerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SchoolIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ScreenRotationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ScreenRotationLockIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ScrewdriverIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ScriptIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SdIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SealIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SearchWebIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SeatFlatAngledIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SeatFlatIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SeatIndividualSuiteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SeatLegroomExtraIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SeatLegroomNormalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SeatLegroomReducedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SeatReclineExtraIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SeatReclineNormalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SecurityAccountIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SecurityHomeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SecurityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SecurityNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SelectAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SelectIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SelectInverseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SelectOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SelectionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SelectionOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SendIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SendSecureIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SerialPortIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ServerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ServerMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ServerNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ServerNetworkOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ServerOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ServerPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ServerRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ServerSecurityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SetAllIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SetCenterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SetCenterRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SetLeftCenterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SetLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SetLeftRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SetNoneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SetRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SettingsBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SettingsOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShapeCirclePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShapeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShapeOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShapePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShapePolygonPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShapeRectanglePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShapeSquarePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShareIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShareVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShieldHalfFullIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShieldIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShieldOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShipWheelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShoppingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShoppingMusicIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShovelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShovelOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShredderIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShuffleDisabledIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShuffleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ShuffleVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SigmaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SigmaLowerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignCautionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignDirectionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignalCellularOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignalCellular_1Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignalCellular_2Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignalCellular_3Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignalHspaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignalHspaPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignalOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SignalVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Signal_2gIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Signal_3gIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Signal_4gIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SilverwareForkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SilverwareIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SilverwareSpoonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SilverwareVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SimAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SimIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SimOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SitemapIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkipBackwardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkipForwardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkipNextCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkipNextCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkipNextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkipPreviousCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkipPreviousCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkipPreviousIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkullIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkypeBusinessIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SkypeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SlackIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SleepIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SleepOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SmokingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SmokingOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SnapchatIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SnowflakeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SnowmanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SoccerFieldIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SoccerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SofaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SolidIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SortAlphabeticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SortAscendingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SortDescendingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SortIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SortNumericIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SortVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SoundcloudIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourceBranchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourceCommitEndIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourceCommitEndLocalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourceCommitIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourceCommitLocalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourceCommitNextLocalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourceCommitStartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourceCommitStartNextLocalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourceForkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourceMergeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SourcePullIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SoySauceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SpeakerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SpeakerOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SpeakerWirelessIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SpeedometerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SpellcheckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SpotifyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SpotlightBeamIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SpotlightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SprayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SquareIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SquareIncCashIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SquareIncIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SquareOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SquareRootIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SshIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StackexchangeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StackoverflowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StadiumIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StairsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StandardDefinitionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StarCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StarHalfIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StarIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StarOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StarOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SteamIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SteeringIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StepBackwardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StepBackward_2Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StepForwardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StepForward_2Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StethoscopeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StickerEmojiIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StickerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StockingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StopCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StopCircleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StopIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StoreIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Store_24HourIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/StoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SubdirectoryArrowLeftIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SubdirectoryArrowRightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SubwayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SubwayVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SummitIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SunglassesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SurroundSoundIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SurroundSound_2_0Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SurroundSound_3_1Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SurroundSound_5_1Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SurroundSound_7_1Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SvgIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SwapHorizontalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SwapHorizontalVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SwapVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SwapVerticalVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SwimIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SwitchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SwordCrossIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SwordIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SyncAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SyncIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/SyncOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TabIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TabPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TabUnselectedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableColumnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableColumnPlusAfterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableColumnPlusBeforeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableColumnRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableColumnWidthIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableEditIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableLargeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableOfContentsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableRowHeightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableRowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableRowPlusAfterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableRowPlusBeforeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableRowRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TableSettingsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TabletAndroidIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TabletIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TabletIpadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TacoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TagFacesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TagHeartIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TagIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TagMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TagOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TagPlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TagRemoveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TagTextOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TargetIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TaxiIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TeachIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TeamviewerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TelegramIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TelevisionBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TelevisionClassicIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TelevisionClassicOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TelevisionGuideIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TelevisionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TelevisionOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TemperatureCelsiusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TemperatureFahrenheitIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TemperatureKelvinIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TennisIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TerrainIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TestTubeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TextShadowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TextToSpeechIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TextToSpeechOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TextboxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TextboxPasswordIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TextureIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TheaterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThemeLightDarkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThermometerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThermometerLinesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThermostatBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThoughtBubbleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThoughtBubbleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThumbDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThumbDownOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThumbUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThumbUpOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ThumbsUpDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TicketAccountIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TicketConfirmationIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TicketIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TicketPercentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TieIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TildeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TimelapseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TimerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TimerOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TimerSandEmptyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TimerSandFullIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TimerSandIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Timer_10Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Timer_3Icon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TimetableIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ToggleSwitchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ToggleSwitchOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TooltipEditIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TooltipIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TooltipImageIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TooltipOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TooltipOutlinePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TooltipTextIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ToothIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ToothOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TowerBeachIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TowerFireIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TowingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrackpadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TractorIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrafficLightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrainIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrainVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TramIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TranscribeCloseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TranscribeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TransferIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TransitTransferIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TranslateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TreasureChestIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TreeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrelloIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrendingDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrendingNeutralIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrendingUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TriangleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TriangleOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrophyAwardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrophyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrophyOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrophyVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TrophyVariantOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TruckDeliveryIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TruckFastIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TruckIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TruckTrailerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TshirtCrewIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TshirtVIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TumblrIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TumblrReblogIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TuneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TuneVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TwitchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TwitterBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TwitterCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TwitterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/TwitterRetweetIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UberIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UbuntuIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UltraHighDefinitionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UmbracoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UmbrellaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UmbrellaOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UndoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UndoVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UnfoldLessHorizontalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UnfoldLessIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UnfoldLessVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UnfoldMoreHorizontalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UnfoldMoreIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UnfoldMoreVerticalIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UngroupIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UnityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UntappdIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UpdateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UploadIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UploadMultipleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UploadNetworkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/UsbIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VanPassengerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VanUtilityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VanishIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorArrangeAboveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorArrangeBelowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorCircleVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorCombineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorCurveIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorDifferenceAbIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorDifferenceBaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorDifferenceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorEllipseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorIntersectionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorLineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorPointIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorPolygonIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorPolylineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorRadiusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorRectangleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorSelectionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorSquareIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorTriangleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VectorUnionIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VenmoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VerifiedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VibrateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VideoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VideoInputAntennaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VideoInputComponentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VideoInputHdmiIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VideoInputSvideoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VideoOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VideoSwitchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Video_3dIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/Video_4kBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewAgendaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewArrayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewCarouselIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewColumnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewDashboardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewDashboardVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewDayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewGridIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewHeadlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewListIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewModuleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewParallelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewQuiltIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewSequentialIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewStreamIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViewWeekIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VimeoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ViolinIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VirtualRealityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VisualstudioIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VkBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VkCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VlcIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VoiceIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VoicemailIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VolumeHighIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VolumeLowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VolumeMediumIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VolumeMinusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VolumeMuteIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VolumeOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VolumePlusIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VpnIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/VuejsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WalkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WallIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WalletGiftcardIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WalletIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WalletMembershipIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WalletTravelIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WanIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WashingMachineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WatchExportIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WatchExportVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WatchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WatchImportIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WatchImportVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WatchVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WatchVibrateIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WaterIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WaterOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WaterPercentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WaterPumpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WatermarkIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WavesIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherCloudyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherFogIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherHailIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherHurricaneIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherLightningIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherLightningRainyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherNightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherPartlycloudyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherPouringIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherRainyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherSnowyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherSnowyRainyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherSunnyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherSunsetDownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherSunsetIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherSunsetUpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherWindyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeatherWindyVariantIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WebIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WebcamIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WebhookIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WebpackIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WechatIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeightIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WeightKilogramIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WhatsappIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WheelchairAccessibilityIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WhiteBalanceAutoIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WhiteBalanceIncandescentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WhiteBalanceIridescentIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WhiteBalanceSunnyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WidgetsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WifiIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WifiOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WiiIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WiiuIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WikipediaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WindowCloseIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WindowClosedIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WindowMaximizeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WindowMinimizeIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WindowOpenIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WindowRestoreIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WindowsIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WordpressIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WorkerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WrapIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WrenchIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/WunderlistIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XamarinIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XamarinOutlineIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XamlIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XboxControllerBatteryAlertIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XboxControllerBatteryEmptyIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XboxControllerBatteryFullIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XboxControllerBatteryLowIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XboxControllerBatteryMediumIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XboxControllerBatteryUnknownIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XboxControllerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XboxControllerOffIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XboxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XdaIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XingBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XingCircleIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XmlIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/XmppIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/YammerIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/YeastIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/YelpIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/YinYangIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/YoutubeCreatorStudioIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/YoutubeGamingIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/YoutubePlayIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/YoutubeTvIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/ZipBoxIcon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/access-point-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/access-point.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-card-details.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-convert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-edit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-group.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-heart.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-key.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-location.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-multiple-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-multiple-plus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-multiple-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-plus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-search.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-settings-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-star.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account-switch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/account.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/accusoft.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/adjust.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/air-conditioner.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/airballoon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/airplane-landing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/airplane-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/airplane-takeoff.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/airplane.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/airplay.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/airport.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alarm-bell.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alarm-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alarm-light.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alarm-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alarm-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alarm-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alarm-snooze.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alarm.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/album.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alert-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alert-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alert-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alert-decagram.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alert-octagon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alert-octagram.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alert-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alien.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/all-inclusive.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/allo.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alpha.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/alphabetical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/altimeter.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/amazon-clouddrive.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/amazon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ambulance.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/amplifier.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/anchor.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/android-debug-bridge.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/android-head.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/android-studio.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/android.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/angular.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/angularjs.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/animation.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/anvil.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apple-finder.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apple-ios.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apple-keyboard-caps.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apple-keyboard-command.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apple-keyboard-control.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apple-keyboard-option.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apple-keyboard-shift.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apple-mobileme.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apple-safari.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/application.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/approval.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/apps.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/archive.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrange-bring-forward.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrange-bring-to-front.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrange-send-backward.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrange-send-to-back.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-all.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-bottom-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-bottom-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-collapse-all.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-collapse-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-collapse-horizontal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-collapse-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-collapse-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-collapse-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-collapse-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-collapse.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down-bold-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down-bold-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down-bold-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down-bold-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down-bold-hexagon-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down-bold.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down-drop-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down-drop-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down-thick.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-expand-all.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-expand-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-expand-horizontal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-expand-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-expand-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-expand-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-expand-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-expand.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left-bold-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left-bold-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left-bold-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left-bold-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left-bold-hexagon-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left-bold.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left-drop-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left-drop-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left-thick.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right-bold-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right-bold-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right-bold-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right-bold-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right-bold-hexagon-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right-bold.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right-drop-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right-drop-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right-thick.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-top-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-top-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up-bold-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up-bold-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up-bold-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up-bold-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up-bold-hexagon-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up-bold.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up-drop-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up-drop-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up-thick.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/arrow-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/artist.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/assistant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/asterisk.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/at.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/atlassian.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/atom.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/attachment.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/audiobook.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/augmented-reality.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/auto-fix.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/auto-upload.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/autorenew.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/av-timer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/azure.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/baby-buggy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/baby.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/backburger.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/backspace.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/backup-restore.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/badminton.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bandcamp.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bank.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/barcode-scan.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/barcode.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/barley.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/barrel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/baseball-bat.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/baseball.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/basecamp.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/basket-fill.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/basket-unfill.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/basket.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/basketball.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-10.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-20.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-30.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-40.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-50.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-60.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-70.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-80.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-90.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-10.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-100.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-20.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-30.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-40.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-50.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-60.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-70.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-80.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-90.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-10.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-20.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-30.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-40.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-50.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-60.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-70.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-80.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-90.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging-wireless.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-charging.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-negative.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-positive.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery-unknown.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/battery.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/beach.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/beaker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/beats.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bed-empty.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/beer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/behance.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bell-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bell-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bell-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bell-ring-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bell-ring.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bell-sleep.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bell.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/beta.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bible.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bike.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/binoculars.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bio.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/biohazard.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bitbucket.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bitcoin.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/black-mesa.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/blackberry.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/blender.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/blinds.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/block-helper.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/blogger.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bluetooth-audio.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bluetooth-connect.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bluetooth-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bluetooth-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bluetooth-transfer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bluetooth.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/blur-linear.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/blur-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/blur-radial.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/blur.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bomb-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bomb.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bone.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book-multiple-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book-open-page-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book-open-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book-open.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book-secure.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book-unsecure.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/book.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bookmark-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bookmark-music.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bookmark-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bookmark-plus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bookmark-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bookmark-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bookmark.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/boombox.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bootstrap.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-all-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-all.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-bottom-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-bottom.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-color.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-horizontal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-inside.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-left-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-none-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-none.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-outside.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-right-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-style.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-top-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-top.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/border-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bottle-wine.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bow-tie.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bowl.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bowling.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/box-cutter.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/box-shadow.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bridge.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/briefcase-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/briefcase-download.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/briefcase-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/briefcase-upload.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/briefcase.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/brightness-1.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/brightness-2.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/brightness-3.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/brightness-4.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/brightness-5.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/brightness-6.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/brightness-7.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/brightness-auto.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/broom.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/brush.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/buffer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bug.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bulletin-board.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bullhorn.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bullseye.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bus-articulated-end.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bus-articulated-front.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bus-double-decker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bus-school.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bus-side.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/bus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cached.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cake-layered.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cake-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cake.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calculator.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-blank.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-clock.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-edit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-multiple-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-question.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-range.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar-today.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/calendar.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/call-made.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/call-merge.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/call-missed.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/call-received.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/call-split.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camcorder-box-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camcorder-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camcorder-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camcorder.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-burst.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-enhance.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-front-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-front.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-gopro.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-iris.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-metering-center.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-metering-matrix.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-metering-partial.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-metering-spot.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-party-mode.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-rear-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-rear.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-switch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera-timer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/camera.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cancel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/candle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/candycane.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cannabis.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/car-battery.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/car-connected.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/car-convertible.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/car-estate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/car-hatchback.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/car-pickup.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/car-side.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/car-sports.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/car-wash.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/car.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/caravan.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cards-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cards-playing-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cards-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cards.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/carrot.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cart-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cart-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cart-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cart.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/case-sensitive-alt.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cash-100.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cash-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cash-usd.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cash.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cast-connected.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cast-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cast.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/castle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cat.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cctv.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ceiling-light.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cellphone-android.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cellphone-basic.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cellphone-dock.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cellphone-iphone.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cellphone-link-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cellphone-link.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cellphone-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cellphone-wireless.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cellphone.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/certificate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chair-school.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-arc.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-areaspline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-bar-stacked.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-bar.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-bubble.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-donut-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-donut.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-gantt.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-histogram.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-line-stacked.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-line-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-line.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-pie.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-scatterplot-hexbin.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chart-timeline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/check-all.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/check-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/check-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/check-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-blank-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-blank-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-blank-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-blank.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-intermediate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-marked-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-marked-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-marked-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-marked.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-multiple-blank-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-multiple-blank-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-multiple-blank-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-multiple-blank.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-multiple-marked-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-multiple-marked-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-multiple-marked-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkbox-multiple-marked.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/checkerboard.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chemical-weapon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chess-bishop.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chess-king.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chess-knight.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chess-pawn.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chess-queen.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chess-rook.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chevron-double-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chevron-double-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chevron-double-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chevron-double-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chevron-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chevron-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chevron-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chevron-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chili-hot.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chili-medium.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chili-mild.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/chip.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/church.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cisco-webex.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/city.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-account.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-arrow-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-arrow-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-check-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-flow.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-pulse-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-pulse.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clipboard.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clippy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clock-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clock-end.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clock-fast.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clock-in.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clock-out.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clock-start.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clock.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/close-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/close-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/close-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/close-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/close-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/close-octagon-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/close-octagon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/close-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/close.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/closed-caption.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-braces.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-download.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-off-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-print-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-print.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-sync.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-tags.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud-upload.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cloud.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/clover.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-array.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-braces.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-brackets.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-equal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-greater-than-or-equal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-greater-than.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-less-than-or-equal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-less-than.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-not-equal-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-not-equal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-parentheses.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-string.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-tags-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/code-tags.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/codepen.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/coffee-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/coffee-to-go.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/coffee.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/coin.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/coins.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/collage.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/color-helper.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-account-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-account.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-alert-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-check-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-plus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-processing-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-processing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-question-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-question.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-remove-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-text-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-text-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-text-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/comment.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/compare.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/compass-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/compass.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/console-line.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/console-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/console.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/contact-mail.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/contacts.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/content-copy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/content-cut.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/content-duplicate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/content-paste.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/content-save-all.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/content-save-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/content-save-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/content-save.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/contrast-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/contrast-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/contrast.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cookie.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/copyright.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/corn.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/counter.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cow.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/crane.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/creation.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/credit-card-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/credit-card-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/credit-card-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/credit-card-scan.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/credit-card.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/crop-free.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/crop-landscape.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/crop-portrait.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/crop-rotate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/crop-square.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/crop.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/crosshairs-gps.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/crosshairs.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/crown.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cube-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cube-send.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cube-unfolded.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cube.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cup-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cup-water.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cup.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/curling.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-bdt.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-btc.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-chf.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-cny.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-eth.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-eur.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-gbp.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-inr.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-jpy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-krw.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-kzt.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-ngn.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-rub.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-sign.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-try.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-twd.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-usd-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/currency-usd.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cursor-default-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cursor-default.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cursor-move.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cursor-pointer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/cursor-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/database-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/database-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/database-search.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/database.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/debug-step-into.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/debug-step-out.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/debug-step-over.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/decagram-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/decagram.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/decimal-decrease.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/decimal-increase.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/delete-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/delete-empty.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/delete-forever.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/delete-restore.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/delete-sweep.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/delete-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/delete.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/delta.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/deskphone.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/desktop-classic.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/desktop-mac.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/desktop-tower.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/details.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/developer-board.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/deviantart.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dialpad.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/diamond.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-1.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-2.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-3.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-4.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-5.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-6.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-d10.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-d12.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-d20.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-d4.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-d6.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-d8.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dice-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dictionary.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dip-switch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/directions-fork.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/directions.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/discord.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/disk-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/disk.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/disqus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/disqus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/division-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/division.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dna.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dns.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/do-not-disturb-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/do-not-disturb.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/docker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dolby.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/domain.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/donkey.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/door-closed.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/door-open.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/door.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/doorbell-video.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dots-horizontal-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dots-horizontal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dots-vertical-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dots-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/douban.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/download-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/download.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/drag-horizontal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/drag-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/drag.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/drawing-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/drawing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dribbble-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dribbble.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/drone.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dropbox.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/drupal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/duck.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/dumbbell.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ear-hearing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/earth-box-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/earth-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/earth-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/earth.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/edge.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eject.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/elephant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/elevation-decline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/elevation-rise.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/elevator.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/email-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/email-open-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/email-open.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/email-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/email-secure.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/email-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/email.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emby.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emoticon-cool.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emoticon-dead.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emoticon-devil.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emoticon-excited.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emoticon-happy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emoticon-neutral.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emoticon-poop.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emoticon-sad.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emoticon-tongue.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/emoticon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/engine-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/engine.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/equal-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/equal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eraser-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eraser.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/escalator.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ethereum.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ethernet-cable-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ethernet-cable.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ethernet.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/etsy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ev-station.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eventbrite.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/evernote.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/exclamation.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/exit-to-app.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/export.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eye-off-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eye-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eye-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eye-plus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eye-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eye-settings-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eye-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eye.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eyedropper-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/eyedropper.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/face-profile.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/face.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/facebook-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/facebook-messenger.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/facebook.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/factory.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fan-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fan.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fast-forward-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fast-forward.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fax.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/feather.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ferry.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-account.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-chart.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-cloud.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-compare.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-delimited.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-document-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-document.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-excel-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-excel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-export.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-find.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-hidden.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-image.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-import.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-lock.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-music.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-pdf-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-pdf.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-percent.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-powerpoint-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-powerpoint.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-presentation-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-question.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-restore.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-send.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-tree.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-video.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-word-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-word.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file-xml.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/file.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/film.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/filmstrip-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/filmstrip.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/filter-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/filter-remove-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/filter-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/filter-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/filter.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/finance.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/find-replace.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fingerprint.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fire-truck.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fire.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/firefox.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fish.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flag-checkered.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flag-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flag-triangle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flag-variant-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flag-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flag.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flash-auto.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flash-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flash-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flash-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flash-red-eye.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flash.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flashlight-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flashlight.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flask-empty-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flask-empty.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flask-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flask.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flattr.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flip-to-back.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flip-to-front.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/floor-plan.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/floppy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/flower.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-account.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-download.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-google-drive.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-image.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-key-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-key.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-lock-open.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-lock.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-move.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-multiple-image.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-open.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-star.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder-upload.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/folder.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/font-awesome.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/food-apple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/food-croissant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/food-fork-drink.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/food-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/food-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/food.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/football-australian.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/football-helmet.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/football.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/forklift.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-align-bottom.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-align-center.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-align-justify.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-align-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-align-middle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-align-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-align-top.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-annotation-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-bold.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-clear.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-color-fill.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-color-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-float-center.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-float-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-float-none.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-float-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-font.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-header-1.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-header-2.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-header-3.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-header-4.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-header-5.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-header-6.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-header-decrease.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-header-equal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-header-increase.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-header-pound.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-horizontal-align-center.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-horizontal-align-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-horizontal-align-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-indent-decrease.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-indent-increase.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-italic.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-line-spacing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-line-style.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-line-weight.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-list-bulleted-type.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-list-bulleted.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-list-checks.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-list-numbers.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-page-break.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-paint.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-paragraph.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-pilcrow.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-quote-close.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-quote-open.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-rotate-90.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-section.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-size.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-strikethrough-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-strikethrough.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-subscript.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-superscript.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-textdirection-l-to-r.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-textdirection-r-to-l.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-title.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-underline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-vertical-align-bottom.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-vertical-align-center.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-vertical-align-top.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-wrap-inline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-wrap-square.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-wrap-tight.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/format-wrap-top-bottom.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/forum-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/forum.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/forward.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/foursquare.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fridge-filled-bottom.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fridge-filled-top.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fridge-filled.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fridge.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fuel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fullscreen-exit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/fullscreen.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/function-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/function.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gamepad-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gamepad.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/garage-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/garage-open.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/garage.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gas-cylinder.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gas-station.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gauge-empty.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gauge-full.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gauge-low.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gauge.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gavel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gender-female.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gender-male-female.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gender-male.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gender-transgender.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gesture-double-tap.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gesture-swipe-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gesture-swipe-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gesture-swipe-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gesture-swipe-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gesture-tap.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gesture-two-double-tap.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gesture-two-tap.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gesture.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ghost.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gift.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/git.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/github-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/github-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/github-face.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/glass-cocktail.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/glass-flute.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/glass-mug.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/glass-stange.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/glass-tulip.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/glass-wine.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/glassdoor.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/glasses.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gmail.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gnome.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/golf.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gondola.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-analytics.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-assistant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-cardboard.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-chrome.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-circles-communities.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-circles-extended.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-circles-group.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-circles.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-controller-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-controller.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-drive.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-earth.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-glass.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-home.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-keep.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-maps.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-nearby.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-pages.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-photos.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-physical-web.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-play.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-plus-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-translate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google-wallet.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/google.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gpu.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/gradient.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/graphql.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/grease-pencil.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/grid-large.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/grid-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/grid.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/group.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/guitar-acoustic.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/guitar-electric.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/guitar-pick-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/guitar-pick.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/guy-fawkes-mask.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hackernews.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hamburger.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hand-pointing-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hanger.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hangouts.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/harddisk.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/headphones-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/headphones-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/headphones-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/headphones.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/headset-dock.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/headset-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/headset.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/heart-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/heart-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/heart-broken.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/heart-half-full.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/heart-half-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/heart-half.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/heart-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/heart-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/heart-pulse.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/heart.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/help-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/help-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/help-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/help-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/help.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hexagon-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hexagon-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hexagon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/high-definition-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/high-definition.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/highway.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/history.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hockey-puck.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hockey-sticks.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hololens.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-account.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-assistant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-automation.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-currency-usd.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-heart.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-map-marker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-modern.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/home.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hook-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hook.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hops.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hospital-building.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hospital-marker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hospital.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hot-tub.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hotel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/houzz-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/houzz.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/hulu.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/human-child.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/human-female.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/human-greeting.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/human-handsdown.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/human-handsup.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/human-male-female.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/human-male.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/human-pregnant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/human.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/humble-bundle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ice-cream.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-album.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-area-close.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-area.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-broken-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-broken.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-filter-black-white.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-filter-center-focus-weak.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-filter-center-focus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-filter-drama.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-filter-frames.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-filter-hdr.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-filter-none.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-filter-tilt-shift.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-filter-vintage.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-filter.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/image.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/import.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/inbox-arrow-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/inbox-arrow-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/inbox-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/inbox.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/incognito.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/infinity.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/information-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/information-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/information.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/instagram.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/instapaper.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/internet-explorer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/invert-colors.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/itunes.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/jeepney.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/jira.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/jquery.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/jsfiddle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/json.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/karate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/keg.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/kettle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/key-change.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/key-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/key-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/key-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/key-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/key.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/keyboard-backspace.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/keyboard-caps.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/keyboard-close.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/keyboard-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/keyboard-return.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/keyboard-tab.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/keyboard-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/keyboard.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/kickstarter.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/kodi.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/label-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/label.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ladybug.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lambda.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lamp.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lan-connect.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lan-disconnect.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lan-pending.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lan.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-c.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-cpp.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-csharp.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-css3.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-go.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-html5.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-javascript.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-lua.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-php.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-python-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-python.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-r.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-swift.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/language-typescript.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/laptop-chromebook.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/laptop-mac.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/laptop-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/laptop-windows.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/laptop.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lastfm.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lastpass.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/launch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lava-lamp.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/layers-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/layers.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lead-pencil.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/leaf.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/led-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/led-on.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/led-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/led-strip.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/led-variant-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/led-variant-on.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/led-variant-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/library-books.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/library-music.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/library-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/library.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lifebuoy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lightbulb-on-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lightbulb-on.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lightbulb-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lightbulb.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/link-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/link-variant-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/link-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/link.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/linkedin-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/linkedin.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/linux.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/loading.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lock-open-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lock-open.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lock-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lock-pattern.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lock-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lock-reset.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lock-smart.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lock.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/locker-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/locker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/login-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/login.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/logout-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/logout.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/looks.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/loop.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/loupe.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/lumx.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/magnet-on.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/magnet.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/magnify-minus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/magnify-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/magnify-plus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/magnify-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/magnify.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mail-ru.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mailbox.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/map-marker-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/map-marker-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/map-marker-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/map-marker-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/map-marker-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/map-marker-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/map-marker-radius.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/map-marker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/map.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/margin.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/markdown.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/marker-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/marker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/material-ui.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/math-compass.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/matrix.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/maxcdn.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/medical-bag.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/medium.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/memory.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/menu-down-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/menu-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/menu-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/menu-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/menu-up-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/menu-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/menu.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-bulleted-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-bulleted.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-draw.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-image.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-processing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-reply-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-reply.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-settings-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-text-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message-video.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/message.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/meteor.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/metronome-tick.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/metronome.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/micro-sd.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/microphone-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/microphone-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/microphone-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/microphone-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/microphone-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/microphone-variant-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/microphone-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/microphone.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/microscope.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/microsoft.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/minecraft.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/minus-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/minus-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/minus-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/minus-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/minus-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mixcloud.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mixed-reality.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mixer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/monitor-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/monitor.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/more.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/motorbike.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mouse-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mouse-variant-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mouse-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mouse.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/move-resize-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/move-resize.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/movie-roll.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/movie.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/multiplication-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/multiplication.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mushroom-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/mushroom.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-note-bluetooth-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-note-bluetooth.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-note-eighth.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-note-half.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-note-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-note-quarter.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-note-sixteenth.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-note-whole.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-note.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/music.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nativescript.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nature-people.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nature.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/navigation.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/near-me.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/needle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nest-protect.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nest-thermostat.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/netflix.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/new-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/newspaper.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nfc-tap.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nfc-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nfc.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ninja.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nintendo-switch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nodejs.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/note-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/note-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/note-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/note-plus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/note-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/note-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/note.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/notebook.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/notification-clear-all.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/npm.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nuke.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/null.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-0-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-0-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-0-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-1-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-1-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-1-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-2-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-2-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-2-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-3-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-3-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-3-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-4-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-4-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-4-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-5-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-5-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-5-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-6-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-6-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-6-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-7-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-7-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-7-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-8-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-8-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-8-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-9-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-9-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-9-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-9-plus-box-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-9-plus-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric-9-plus-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/numeric.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nut.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/nutrition.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/oar.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/octagon-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/octagon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/octagram-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/octagram.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/odnoklassniki.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/office.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/oil-temperature.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/oil.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/omega.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/onedrive.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/onenote.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/onepassword.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/opacity.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/open-in-app.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/open-in-new.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/openid.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/opera.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/orbit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ornament-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ornament.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/owl.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/package-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/package-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/package-variant-closed.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/package-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/package.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/page-first.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/page-last.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/page-layout-body.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/page-layout-footer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/page-layout-header.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/page-layout-sidebar-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/page-layout-sidebar-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/palette-advanced.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/palette-swatch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/palette.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/panda.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pandora.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/panorama-fisheye.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/panorama-horizontal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/panorama-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/panorama-wide-angle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/panorama.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/paper-cut-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/paperclip.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/parking.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/passport.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/patreon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pause-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pause-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pause-octagon-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pause-octagon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pause.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/paw-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/paw.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/paypal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/peace.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pen.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pencil-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pencil-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pencil-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pencil-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pencil-lock.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pencil-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pencil.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pentagon-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pentagon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/percent.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/periodic-table-co2.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/periodic-table.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/periscope.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pharmacy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-bluetooth.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-classic.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-forward.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-hangup.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-in-talk.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-incoming.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-locked.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-log.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-missed.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-outgoing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-paused.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-return.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-rotate-landscape.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-rotate-portrait.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone-voip.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/phone.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pi-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pi.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/piano.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pickaxe.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pier-crane.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pier.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pig.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pill.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pillar.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pin-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pin.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pine-tree-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pine-tree.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pinterest-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pinterest.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pipe-disconnected.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pipe-leak.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pipe.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pistol.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/piston.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pizza.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plane-shield.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/play-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/play-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/play-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/play-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/play-pause.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/play-protected-content.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/play.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/playlist-check.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/playlist-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/playlist-play.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/playlist-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/playlist-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/playstation.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plex.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plus-box-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plus-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plus-circle-multiple-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plus-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plus-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plus-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plus-one.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pocket.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pokeball.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/poker-chip.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/polaroid.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/poll-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/poll.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/polymer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pool.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/popcorn.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pot-mix.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pot.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pound-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pound.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/power-plug-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/power-plug.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/power-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/power-socket-eu.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/power-socket-uk.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/power-socket-us.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/power-socket.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/power.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/prescription.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/presentation-play.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/presentation.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/printer-3d.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/printer-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/printer-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/printer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/priority-high.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/priority-low.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/professional-hexagon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/projector-screen.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/projector.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/publish.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/pulse.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/puzzle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/qqchat.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/qrcode-edit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/qrcode-scan.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/qrcode.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/quadcopter.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/quality-high.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/quicktime.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/radar.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/radiator.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/radio-handheld.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/radio-tower.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/radio.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/radioactive.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/radiobox-blank.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/radiobox-marked.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/raspberrypi.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ray-end-arrow.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ray-end.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ray-start-arrow.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ray-start-end.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ray-start.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ray-vertex.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/react.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/read.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/receipt.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/record-rec.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/record.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/recycle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/reddit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/redo-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/redo.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/refresh.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/regex.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/relative-scale.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/reload.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/reminder.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/remote-desktop.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/remote.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rename-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/reorder-horizontal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/reorder-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/repeat-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/repeat-once.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/repeat.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/replay.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/reply-all.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/reply.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/reproduction.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/resize-bottom-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/responsive.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/restart.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/restore.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rewind-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rewind.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rhombus-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rhombus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ribbon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rice.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ring.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/road-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/road.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/robot.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rocket.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/room-service.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/roomba.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rotate-3d.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rotate-left-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rotate-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rotate-right-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rotate-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rounded-corner.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/router-wireless.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/routes.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rowing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rss-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/rss.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ruler.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/run-fast.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/run.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sale.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/salesforce.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sass.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/satellite-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/satellite.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sausage.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/saxophone.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/scale-balance.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/scale-bathroom.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/scale.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/scanner.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/school.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/screen-rotation-lock.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/screen-rotation.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/screwdriver.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/script.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sd.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/seal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/search-web.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/seat-flat-angled.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/seat-flat.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/seat-individual-suite.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/seat-legroom-extra.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/seat-legroom-normal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/seat-legroom-reduced.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/seat-recline-extra.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/seat-recline-normal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/security-account.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/security-home.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/security-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/security.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/select-all.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/select-inverse.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/select-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/select.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/selection-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/selection.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/send-secure.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/send.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/serial-port.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/server-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/server-network-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/server-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/server-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/server-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/server-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/server-security.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/server.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/set-all.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/set-center-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/set-center.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/set-left-center.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/set-left-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/set-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/set-none.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/set-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/settings-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/settings-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shape-circle-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shape-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shape-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shape-polygon-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shape-rectangle-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shape-square-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shape.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/share-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/share.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shield-half-full.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shield-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shield.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ship-wheel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shopping-music.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shopping.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shovel-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shovel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shredder.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shuffle-disabled.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shuffle-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/shuffle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sigma-lower.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sigma.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sign-caution.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sign-direction.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sign-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-2g.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-3g.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-4g.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-cellular-1.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-cellular-2.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-cellular-3.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-cellular-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-hspa-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-hspa.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/signal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/silverware-fork.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/silverware-spoon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/silverware-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/silverware.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sim-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sim-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sim.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sitemap.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skip-backward.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skip-forward.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skip-next-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skip-next-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skip-next.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skip-previous-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skip-previous-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skip-previous.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skull.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skype-business.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/skype.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/slack.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sleep-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sleep.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/smoking-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/smoking.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/snapchat.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/snowflake.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/snowman.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/soccer-field.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/soccer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sofa.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/solid.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sort-alphabetical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sort-ascending.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sort-descending.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sort-numeric.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sort-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sort.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/soundcloud.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-branch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-commit-end-local.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-commit-end.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-commit-local.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-commit-next-local.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-commit-start-next-local.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-commit-start.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-commit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-fork.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-merge.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/source-pull.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/soy-sauce.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/speaker-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/speaker-wireless.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/speaker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/speedometer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/spellcheck.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/spotify.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/spotlight-beam.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/spotlight.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/spray.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/square-inc-cash.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/square-inc.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/square-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/square-root.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/square.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ssh.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/stack-overflow.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/stackexchange.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/stadium.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/stairs.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/standard-definition.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/star-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/star-half.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/star-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/star-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/star.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/steam.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/steering.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/step-backward-2.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/step-backward.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/step-forward-2.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/step-forward.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/stethoscope.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sticker-emoji.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sticker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/stocking.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/stop-circle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/stop-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/stop.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/store-24-hour.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/store.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/stove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/subdirectory-arrow-left.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/subdirectory-arrow-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/subway-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/subway.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/summit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sunglasses.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/surround-sound-2-0.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/surround-sound-3-1.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/surround-sound-5-1.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/surround-sound-7-1.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/surround-sound.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/svg.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/swap-horizontal-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/swap-horizontal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/swap-vertical-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/swap-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/swim.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/switch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sword-cross.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sword.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sync-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sync-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/sync.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tab-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tab-unselected.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tab.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-column-plus-after.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-column-plus-before.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-column-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-column-width.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-column.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-edit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-large.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-of-contents.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-row-height.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-row-plus-after.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-row-plus-before.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-row-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-row.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table-settings.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/table.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tablet-android.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tablet-ipad.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tablet.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/taco.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tag-faces.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tag-heart.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tag-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tag-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tag-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tag-remove.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tag-text-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tag.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/target.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/taxi.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/teach.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/teamviewer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/telegram.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/television-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/television-classic-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/television-classic.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/television-guide.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/television-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/television.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/temperature-celsius.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/temperature-fahrenheit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/temperature-kelvin.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tennis.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tent.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/terrain.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/test-tube.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/text-shadow.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/text-to-speech-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/text-to-speech.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/textbox-password.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/textbox.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/texture.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/theater.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/theme-light-dark.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/thermometer-lines.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/thermometer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/thermostat-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/thought-bubble-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/thought-bubble.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/thumb-down-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/thumb-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/thumb-up-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/thumb-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/thumbs-up-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ticket-account.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ticket-confirmation.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ticket-percent.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ticket.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tie.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tilde.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/timelapse.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/timer-10.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/timer-3.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/timer-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/timer-sand-empty.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/timer-sand-full.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/timer-sand.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/timer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/timetable.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/toggle-switch-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/toggle-switch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tooltip-edit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tooltip-image.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tooltip-outline-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tooltip-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tooltip-text.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tooltip.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tooth-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tooth.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tor.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tower-beach.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tower-fire.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/towing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/trackpad.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tractor.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/traffic-light.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/train-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/train.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tram.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/transcribe-close.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/transcribe.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/transfer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/transit-transfer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/translate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/treasure-chest.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tree.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/trello.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/trending-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/trending-neutral.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/trending-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/triangle-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/triangle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/trophy-award.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/trophy-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/trophy-variant-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/trophy-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/trophy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/truck-delivery.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/truck-fast.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/truck-trailer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/truck.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tshirt-crew.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tshirt-v.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tumblr-reblog.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tumblr.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tune-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/tune.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/twitch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/twitter-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/twitter-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/twitter-retweet.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/twitter.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/uber.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ubuntu.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ultra-high-definition.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/umbraco.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/umbrella-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/umbrella.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/undo-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/undo.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/unfold-less-horizontal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/unfold-less-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/unfold-more-horizontal.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/unfold-more-vertical.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/ungroup.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/unity.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/untappd.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/update.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/upload-multiple.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/upload-network.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/upload.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/usb.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/van-passenger.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/van-utility.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vanish.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-arrange-above.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-arrange-below.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-circle-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-combine.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-curve.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-difference-ab.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-difference-ba.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-difference.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-ellipse.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-intersection.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-line.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-point.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-polygon.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-polyline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-radius.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-rectangle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-selection.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-square.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-triangle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vector-union.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/venmo.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/verified.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vibrate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/video-3d.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/video-4k-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/video-input-antenna.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/video-input-component.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/video-input-hdmi.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/video-input-svideo.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/video-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/video-switch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/video.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-agenda.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-array.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-carousel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-column.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-dashboard-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-dashboard.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-day.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-grid.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-headline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-list.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-module.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-parallel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-quilt.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-sequential.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-stream.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/view-week.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vimeo.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/violin.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/virtual-reality.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/visualstudio.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vk-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vk-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vk.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vlc.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/voice.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/voicemail.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/volume-high.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/volume-low.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/volume-medium.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/volume-minus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/volume-mute.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/volume-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/volume-plus.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vpn.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/vuejs.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/walk.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wall.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wallet-giftcard.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wallet-membership.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wallet-travel.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wallet.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wan.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/washing-machine.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/watch-export-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/watch-export.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/watch-import-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/watch-import.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/watch-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/watch-vibrate.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/watch.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/water-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/water-percent.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/water-pump.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/water.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/watermark.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/waves.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-cloudy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-fog.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-hail.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-hurricane.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-lightning-rainy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-lightning.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-night.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-partlycloudy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-pouring.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-rainy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-snowy-rainy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-snowy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-sunny.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-sunset-down.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-sunset-up.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-sunset.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-windy-variant.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weather-windy.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/web.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/webcam.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/webhook.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/webpack.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wechat.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weight-kilogram.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/weight.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/whatsapp.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wheelchair-accessibility.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/white-balance-auto.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/white-balance-incandescent.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/white-balance-iridescent.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/white-balance-sunny.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/widgets.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wifi-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wifi.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wii.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wiiu.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wikipedia.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/window-close.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/window-closed.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/window-maximize.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/window-minimize.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/window-open.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/window-restore.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/windows.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wordpress.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/worker.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wrap.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wrench.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/wunderlist.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xamarin-outline.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xamarin.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xaml.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xbox-controller-battery-alert.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xbox-controller-battery-empty.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xbox-controller-battery-full.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xbox-controller-battery-low.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xbox-controller-battery-medium.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xbox-controller-battery-unknown.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xbox-controller-off.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xbox-controller.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xbox.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xda.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xing-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xing-circle.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xing.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xml.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/xmpp.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/yammer.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/yeast.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/yelp.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/yin-yang.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/youtube-creator-studio.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/youtube-gaming.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/youtube-play.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/youtube-tv.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/svg/zip-box.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons/material/transform.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@ladjs</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/markdown-it-math/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/markdown-it-math/.travis.yml</Path>
@@ -5805,6 +10466,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/diverging.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/identity.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/init.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/linear.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/log.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/nice.js</Path>
@@ -5814,6 +10476,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/quantile.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/quantize.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/sequential.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/sequentialQuantile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/symlog.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/threshold.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/tickFormat.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/time.js</Path>
@@ -5829,6 +10493,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/constant.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/create.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/creator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/identity.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/local.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/matcher.js</Path>
@@ -5854,6 +10519,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/html.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/insert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/join.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/lower.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/merge.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/node.js</Path>
@@ -5918,6 +10584,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/offset/none.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/offset/silhouette.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/offset/wiggle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/order/appearance.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/order/ascending.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/order/descending.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/order/insideOut.js</Path>
@@ -6033,6 +10700,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/delay.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/duration.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/ease.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/end.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/filter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/interpolate.js</Path>
@@ -6228,6 +10896,52 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/diacritics-map/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/diacritics-map/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/diacritics-map/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/activeElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/class/addClass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/class/hasClass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/class/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/class/removeClass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/events/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/events/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/events/listen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/events/off.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/events/on.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/ownerDocument.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/ownerWindow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/closest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/contains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/height.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/isWindow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/matches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/offset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/offsetParent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/position.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/querySelectorAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/scrollLeft.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/scrollParent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/scrollTop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/query/width.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/style/getComputedStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/style/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/style/removeStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/transition/animate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/transition/end.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/transition/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/transition/isTransform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/transition/properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/util/camelize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/util/camelizeStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/util/hyphenate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/util/hyphenateStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/util/inDOM.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/util/requestAnimationFrame.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/util/scrollTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-helpers/util/scrollbarSize.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-serializer/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-serializer/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-serializer/node_modules/domelementtype/LICENSE</Path>
@@ -7034,6 +11748,299 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/he.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/man/he.1</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/api.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/building-testing.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/css-classes-reference.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/index.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/language-contribution.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/language-guide.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/language-requests.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/line-numbers.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/maintainers-guide.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/reference.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/docs/style-guide.rst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/highlight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/1c.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/abnf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/accesslog.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/actionscript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/ada.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/angelscript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/apache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/applescript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/arcade.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/arduino.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/armasm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/asciidoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/aspectj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/autohotkey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/autoit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/avrasm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/awk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/axapta.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/bash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/basic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/bnf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/brainfuck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/cal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/capnproto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/ceylon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/clean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/clojure-repl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/clojure.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/cmake.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/coffeescript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/coq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/cos.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/cpp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/crmsh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/crystal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/cs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/csp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/css.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/d.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/dart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/delphi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/diff.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/django.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/dns.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/dockerfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/dos.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/dsconfig.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/dts.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/dust.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/ebnf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/elixir.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/elm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/erb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/erlang-repl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/erlang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/excel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/fix.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/flix.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/fortran.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/fsharp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/gams.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/gauss.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/gcode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/gherkin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/glsl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/gml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/go.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/golo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/gradle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/groovy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/haml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/handlebars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/haskell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/haxe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/hsp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/htmlbars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/http.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/hy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/inform7.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/ini.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/irpf90.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/isbl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/java.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/javascript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/jboss-cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/julia-repl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/julia.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/kotlin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/lasso.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/ldif.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/leaf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/less.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/lisp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/livecodeserver.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/livescript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/llvm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/lsl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/lua.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/makefile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/markdown.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/mathematica.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/matlab.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/maxima.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/mel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/mercury.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/mipsasm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/mizar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/mojolicious.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/monkey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/moonscript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/n1ql.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/nginx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/nimrod.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/nix.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/nsis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/objectivec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/ocaml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/openscad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/oxygene.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/parser3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/perl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/pf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/pgsql.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/php.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/plaintext.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/pony.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/powershell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/processing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/profile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/prolog.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/protobuf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/puppet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/purebasic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/python.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/q.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/qml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/r.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/reasonml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/rib.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/roboconf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/routeros.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/rsl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/ruby.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/ruleslanguage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/rust.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/sas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/scala.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/scheme.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/scilab.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/scss.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/shell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/smali.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/smalltalk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/sml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/sqf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/sql.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/stan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/stata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/step21.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/stylus.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/subunit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/swift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/taggerscript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/tap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/tcl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/tex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/thrift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/tp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/twig.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/typescript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/vala.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/vbnet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/vbscript-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/vbscript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/verilog.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/vhdl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/vim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/x86asm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/xl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/xml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/xquery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/yaml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/lib/languages/zephir.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/a11y-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/a11y-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/agate.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/an-old-hope.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/androidstudio.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/arduino-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/arta.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/ascetic.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-cave-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-cave-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-dune-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-dune-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-estuary-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-estuary-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-forest-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-forest-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-heath-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-heath-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-lakeside-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-lakeside-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-plateau-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-plateau-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-savanna-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-savanna-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-seaside-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-seaside-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atelier-sulphurpool-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atom-one-dark-reasonable.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atom-one-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/atom-one-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/brown-paper.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/brown-papersq.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/codepen-embed.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/color-brewer.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/darcula.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/darkula.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/default.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/docco.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/dracula.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/far.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/foundation.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/github-gist.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/github.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/gml.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/googlecode.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/grayscale.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/gruvbox-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/gruvbox-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/hopscotch.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/hybrid.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/idea.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/ir-black.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/isbl-editor-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/isbl-editor-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/kimbie.dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/kimbie.light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/lightfair.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/magula.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/mono-blue.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/monokai-sublime.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/monokai.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/nord.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/obsidian.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/ocean.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/paraiso-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/paraiso-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/pojoaque.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/pojoaque.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/purebasic.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/qtcreator_dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/qtcreator_light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/railscasts.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/rainbow.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/routeros.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/school-book.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/school-book.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/shades-of-purple.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/solarized-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/solarized-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/sunburst.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/tomorrow-night-blue.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/tomorrow-night-bright.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/tomorrow-night-eighties.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/tomorrow-night.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/tomorrow.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/vs.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/vs2015.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/xcode.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/xt256.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/highlight.js/styles/zenburn.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/hoist-non-react-statics/LICENSE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/hoist-non-react-statics/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js</Path>
@@ -7168,6 +12175,20 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invariant/invariant.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invariant/invariant.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invariant/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invert-color/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invert-color/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invert-color/lib/cjs/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invert-color/lib/esm/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invert-color/lib/invert.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invert-color/lib/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invert-color/lib/invert.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invert-color/lib/invert.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invert-color/lib/invert.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invert-color/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ip-regex/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ip-regex/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ip-regex/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ip-regex/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-arrayish/.editorconfig</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-arrayish/.istanbul.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-arrayish/.npmignore</Path>
@@ -9701,7 +14722,23 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/lib/matchAt.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/lib/matchAt.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/math-random/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/dist/colors.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/dist/colors.es2015.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/dist/colors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/dist/colors.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/dist/colors.less</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/dist/colors.sass</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/dist/colors.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/dist/colors.styl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/dist/colors.var.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/test/fixtures/default-import.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/test/fixtures/named-import.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/test/fixtures/wildcard-import.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/test/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/test/module.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/math-random/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/math-random/browser.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/math-random/node.js</Path>
@@ -9859,6 +14896,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/de.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/dv.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/el.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/en-SG.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/en-au.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/en-ca.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/en-gb.js</Path>
@@ -9878,6 +14916,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/fr-ch.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/fr.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/fy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/ga.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/gd.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/gl.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/gom-latn.js</Path>
@@ -9889,6 +14928,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/hy-am.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/id.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/it-ch.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/it.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/ja.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/jv.js</Path>
@@ -10096,6 +15136,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/de.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/dv.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/el.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/en-SG.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/en-au.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/en-ca.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/en-gb.js</Path>
@@ -10115,6 +15156,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/fr-ch.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/fr.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/fy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/ga.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/gd.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/gl.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/gom-latn.js</Path>
@@ -10126,6 +15168,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/hy-am.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/id.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/it-ch.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/it.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/ja.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/jv.js</Path>
@@ -10567,6 +15610,11 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/index.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/node_modules/supports-color/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/node_modules/supports-color/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/node_modules/supports-color/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/node_modules/supports-color/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/node_modules/supports-color/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/templates.js</Path>
@@ -10752,6 +15800,99 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/lib/Codemirror.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/src/Codemirror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Alpha.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Block.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Chrome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Circle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Compact.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Custom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Github.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Hue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Material.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Photoshop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Sketch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Slider.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Swatches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/Twitter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/alpha/Alpha.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/alpha/AlphaPointer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/alpha/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/block/Block.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/block/BlockSwatches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/block/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/block/story.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/chrome/Chrome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/chrome/ChromeFields.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/chrome/ChromePointer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/chrome/ChromePointerCircle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/chrome/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/chrome/story.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/circle/Circle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/circle/CircleSwatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/circle/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/circle/story.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/common/Alpha.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/common/Checkboard.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/common/ColorWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/common/EditableInput.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/common/Hue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/common/Raised.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/common/Saturation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/common/Swatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/common/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/common/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/compact/Compact.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/compact/CompactColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/compact/CompactFields.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/compact/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/compact/story.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/github/Github.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/github/GithubSwatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/github/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/github/story.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/hue/Hue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/hue/HuePointer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/hue/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/material/Material.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/material/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/material/story.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/photoshop/Photoshop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/photoshop/PhotoshopButton.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/photoshop/PhotoshopFields.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/photoshop/PhotoshopPointer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/photoshop/PhotoshopPointerCircle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/photoshop/PhotoshopPreviews.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/photoshop/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/photoshop/story.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/sketch/Sketch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/sketch/SketchFields.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/sketch/SketchPresetColors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/sketch/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/sketch/story.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/slider/Slider.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/slider/SliderPointer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/slider/SliderSwatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/slider/SliderSwatches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/slider/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/swatches/Swatches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/swatches/SwatchesColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/swatches/SwatchesGroup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/swatches/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/swatches/story.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/twitter/Twitter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/twitter/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/components/twitter/story.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/helpers/alpha.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/helpers/checkboard.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/helpers/color.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/helpers/hue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/helpers/interaction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/helpers/saturation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/helpers/spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-debounce-render/LICENSE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-debounce-render/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-debounce-render/lib/index.js</Path>
@@ -10935,6 +16076,63 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/server.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/test-utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/bundle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/bundle.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/css/main.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/css/main.css.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/fonts/fontawesome-webfont.eot</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/fonts/fontawesome-webfont.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/fonts/fontawesome-webfont.ttf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/fonts/fontawesome-webfont.woff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/fonts/fontawesome-webfont.woff2</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/img/landing1.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/img/landing2.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/img/landing3.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/img/landing4.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/img/landing5.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/dist/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/log.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/screenshot.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/img/landing1.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/img/landing2.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/img/landing3.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/img/landing4.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/img/landing5.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/index.sass</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/sass/_index.html.sass</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/sass/_reset.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/src/sass/main.sass</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/tools/build.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/tools/srcServer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/webpack.config.dev.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/example/example2/webpack.config.prod.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/lib/Footer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/lib/ReactImageCarousel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/lib/css/main.min.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/src/Footer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/src/ReactImageCarousel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-image-carousel/src/main.min.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-lifecycles-compat/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-lifecycles-compat/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-lifecycles-compat/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-lifecycles-compat/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-lifecycles-compat/react-lifecycles-compat.cjs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-lifecycles-compat/react-lifecycles-compat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-lifecycles-compat/react-lifecycles-compat.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/LICENSE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/README.md</Path>
@@ -10998,6 +16196,19 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/node_modules/object-assign/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/test/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/CSSTransition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/ReplaceTransition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/Transition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/TransitionGroup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/dist/react-transition-group.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/utils/ChildMapping.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/utils/PropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/utils/SimpleSet.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/dist/react-with-addons.js</Path>
@@ -11058,6 +16269,31 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/update.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/react.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/.eslintignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/.eslintrc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/lib/autoprefix.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/lib/components/active.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/lib/components/hover.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/lib/flattenNames.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/lib/loop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/lib/mergeClasses.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/modules/react-basic-layout/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/modules/react-documentation/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/modules/react-material-design/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/modules/react-material-design/lib/components/Ink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/modules/react-material-design/lib/components/Link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/modules/react-material-design/lib/components/Raised.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/modules/react-material-design/lib/components/Tab.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/modules/react-material-design/lib/components/Tabs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/modules/react-material-design/lib/components/Tile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/webpack.dev.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reactcss/webpack.prod.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/read-all-stream/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/read-all-stream/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/read-all-stream/package.json</Path>
@@ -11618,6 +16854,24 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/timed-out/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/timed-out/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/timed-out/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/Gruntfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/demo/demo.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/demo/jquery-1.9.1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/dist/tinycolor-min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/docs/docco.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/docs/tinycolor.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/test/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/test/qunit.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/test/qunit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/test/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tinycolor2/tinycolor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/to-object-path/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/to-object-path/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/to-object-path/index.js</Path>
@@ -12199,6 +17453,21 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/request.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/lib/cookie.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/lib/memstore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/lib/pathMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/lib/permuteDomain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/lib/pubsuffix-psl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/lib/store.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/lib/version.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/node_modules/punycode/LICENSE-MIT.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/node_modules/punycode/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/node_modules/punycode/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/node_modules/punycode/punycode.es6.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/node_modules/punycode/punycode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tough-cookie/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tunnel-agent/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tunnel-agent/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tunnel-agent/index.js</Path>
@@ -12458,6 +17727,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrappy/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrappy/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrappy/wrappy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/write-file-atomic/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/write-file-atomic/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/write-file-atomic/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/write-file-atomic/index.js</Path>
@@ -12630,6 +17900,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-trash-sidenav.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-trash.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-unlock.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-x-light.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-x.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-zoom.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/repository/top.png</Path>
@@ -12698,12 +17969,12 @@
</Files>
</Package>
<History>
- <Update release="4">
- <Date>2019-01-05</Date>
- <Version>0.11.12</Version>
+ <Update release="5">
+ <Date>2019-01-28</Date>
+ <Version>0.11.13</Version>
<Comment>Packaging update</Comment>
<Name>F. von Gellhorn</Name>
<Email>flinux@vongellhorn.ch</Email>
</Update>
</History>
</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Sat, Jul 22, 4:02 PM (2 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5804848
Default Alt Text
D5180.diff (688 KB)

Event Timeline