Page MenuHomeSolus

D8977.id21588.diff
No OneTemporary

D8977.id21588.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,137 +1,112 @@
-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'
+diff -ura a/browser/lib/newNote.js b/browser/lib/newNote.js
+--- a/browser/lib/newNote.js 2020-02-24 10:11:36.000000000 +0100
++++ b/browser/lib/newNote.js 2020-02-29 08:53:49.233387076 +0100
+@@ -1,6 +1,5 @@
import dataApi from 'browser/main/lib/dataApi'
import ee from 'browser/main/lib/eventEmitter'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
-+
+ import queryString from 'query-string'
+ import { push } from 'connected-react-router'
- export function createMarkdownNote (storage, folder, dispatch, location, params, config) {
+@@ -12,8 +11,6 @@
+ params,
+ config
+ ) {
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_MARKDOWN')
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
-+
let tags = []
- if (config.ui.tagNewNoteWithFilteringTags && location.pathname.match(/\/tags/)) {
-@@ -38,8 +37,7 @@ export function createMarkdownNote (storage, folder, dispatch, location, params,
- }
-
- export function createSnippetNote (storage, folder, dispatch, location, params, config) {
+ if (
+@@ -58,8 +55,6 @@
+ params,
+ config
+ ) {
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_SNIPPET')
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
-+
let tags = []
- if (config.ui.tagNewNoteWithFilteringTags && location.pathname.match(/\/tags/)) {
-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'
+ if (
+diff -ura a/browser/main/Detail/MarkdownNoteDetail.js b/browser/main/Detail/MarkdownNoteDetail.js
+--- a/browser/main/Detail/MarkdownNoteDetail.js 2020-02-24 10:11:36.000000000 +0100
++++ b/browser/main/Detail/MarkdownNoteDetail.js 2020-02-29 08:54:42.533063730 +0100
+@@ -14,7 +14,6 @@
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'
-@@ -130,7 +130,7 @@ class MarkdownNoteDetail extends React.Component {
- type: 'UPDATE_NOTE',
- note: note
- })
-- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
-+
+@@ -161,7 +160,6 @@
+ type: 'UPDATE_NOTE',
+ note: note
})
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
+ })
}
-@@ -169,7 +169,7 @@ class MarkdownNoteDetail extends React.Component {
+@@ -205,8 +203,6 @@
- handleStarButtonClick (e) {
+ handleStarButtonClick(e) {
const { note } = this.state
-- if (!note.isStarred) AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_STAR')
-+
+- if (!note.isStarred)
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_STAR')
note.isStarred = !note.isStarred
-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'
+diff -ura a/browser/main/Detail/SnippetNoteDetail.js b/browser/main/Detail/SnippetNoteDetail.js
+--- a/browser/main/Detail/SnippetNoteDetail.js 2020-02-24 10:11:36.000000000 +0100
++++ b/browser/main/Detail/SnippetNoteDetail.js 2020-02-29 08:56:45.052205264 +0100
+@@ -17,7 +17,6 @@
+ import ConfigManager from 'browser/main/lib/ConfigManager'
import _ from 'lodash'
- import {findNoteTitle} from 'browser/lib/findNoteTitle'
- import convertModeName from 'browser/lib/convertModeName'
+ import { findNoteTitle } from 'browser/lib/findNoteTitle'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
import FullscreenButton from './FullscreenButton'
import TrashButton from './TrashButton'
import RestoreButton from './RestoreButton'
-@@ -142,7 +141,7 @@ class SnippetNoteDetail extends React.Component {
- type: 'UPDATE_NOTE',
- note: note
- })
-- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
-+
+@@ -162,7 +161,6 @@
+ type: 'UPDATE_NOTE',
+ note: note
})
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
+ })
}
-@@ -181,7 +180,7 @@ class SnippetNoteDetail extends React.Component {
+@@ -206,8 +204,6 @@
- handleStarButtonClick (e) {
+ handleStarButtonClick(e) {
const { note } = this.state
-- if (!note.isStarred) AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_STAR')
-+
+- if (!note.isStarred)
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_STAR')
note.isStarred = !note.isStarred
-@@ -377,9 +376,7 @@ class SnippetNoteDetail extends React.Component {
+@@ -420,9 +416,6 @@
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})}))
-
-@@ -402,9 +399,7 @@ class SnippetNoteDetail extends React.Component {
- this.save()
- })
-
+ this.setState(state => ({
+ note: Object.assign(state.note, { snippets: snippets })
+@@ -454,10 +447,6 @@
+ this.save()
+ }
+ )
+-
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('SELECT_LANG', {
- name
- })
-+
}
}
-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'
+diff -ura a/browser/main/Detail/TagSelect.js b/browser/main/Detail/TagSelect.js
+--- a/browser/main/Detail/TagSelect.js 2020-02-24 10:11:36.000000000 +0100
++++ b/browser/main/Detail/TagSelect.js 2020-02-29 08:56:59.032099365 +0100
+@@ -4,7 +4,6 @@
import CSSModules from 'browser/lib/CSSModules'
import styles from './TagSelect.styl'
import _ from 'lodash'
@@ -139,28 +114,28 @@
import i18n from 'browser/lib/i18n'
import ee from 'browser/main/lib/eventEmitter'
import Autosuggest from 'react-autosuggest'
-@@ -28,7 +27,6 @@ class TagSelect extends React.Component {
+@@ -33,8 +32,6 @@
}
- addNewTag (newTag) {
+ addNewTag(newTag) {
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_TAG')
-
+-
newTag = newTag.trim().replace(/ +/g, '_')
if (newTag.charAt(0) === '#') {
-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'
+ newTag.substring(1)
+diff -ura a/browser/main/Main.js b/browser/main/Main.js
+--- a/browser/main/Main.js 2020-02-24 10:11:36.000000000 +0100
++++ b/browser/main/Main.js 2020-02-29 08:54:04.653297346 +0100
+@@ -10,7 +10,6 @@
import dataApi from 'browser/main/lib/dataApi'
import _ from 'lodash'
import ConfigManager from 'browser/main/lib/ConfigManager'
-import mobileAnalytics from 'browser/main/lib/AwsMobileAnalyticsConfig'
import eventEmitter from 'browser/main/lib/eventEmitter'
- import { hashHistory } from 'react-router'
- import store from 'browser/main/store'
-@@ -25,10 +24,6 @@ class Main extends React.Component {
- constructor (props) {
+ import { store } from 'browser/main/store'
+ import i18n from 'browser/lib/i18n'
+@@ -27,10 +26,6 @@
+ constructor(props) {
super(props)
- if (process.env.NODE_ENV === 'production') {
@@ -170,92 +145,47 @@
const { config } = props
this.state = {
-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'
+diff -ura a/browser/main/modals/CreateFolderModal.js b/browser/main/modals/CreateFolderModal.js
+--- a/browser/main/modals/CreateFolderModal.js 2020-02-24 10:11:36.000000000 +0100
++++ b/browser/main/modals/CreateFolderModal.js 2020-02-29 08:57:14.241982649 +0100
+@@ -6,7 +6,6 @@
+ import { store } from 'browser/main/store'
import consts from 'browser/lib/consts'
import ModalEscButton from 'browser/components/ModalEscButton'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
import i18n from 'browser/lib/i18n'
class CreateFolderModal extends React.Component {
-@@ -51,7 +50,6 @@ class CreateFolderModal extends React.Component {
+@@ -51,7 +50,6 @@
}
- confirm () {
+ confirm() {
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_FOLDER')
if (this.state.name.trim().length > 0) {
const { storage } = this.props
const input = {
-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'
+diff -ura a/browser/main/modals/PreferencesModal/InfoTab.js b/browser/main/modals/PreferencesModal/InfoTab.js
+--- a/browser/main/modals/PreferencesModal/InfoTab.js 2020-02-24 10:11:36.000000000 +0100
++++ b/browser/main/modals/PreferencesModal/InfoTab.js 2020-02-29 08:58:41.331288275 +0100
+@@ -3,7 +3,6 @@
import styles from './InfoTab.styl'
import ConfigManager from 'browser/main/lib/ConfigManager'
- import store from 'browser/main/store'
+ import { store } from 'browser/main/store'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
import _ from 'lodash'
import i18n from 'browser/lib/i18n'
-@@ -25,47 +24,6 @@ class InfoTab extends React.Component {
+@@ -25,42 +24,6 @@
e.preventDefault()
}
-- handleConfigChange (e) {
+- handleConfigChange(e) {
- const newConfig = { amaEnabled: this.refs.amaEnabled.checked }
-
- this.setState({ config: newConfig })
- }
-
-- handleSaveButtonClick (e) {
+- handleSaveButtonClick(e) {
- const newConfig = {
- amaEnabled: this.state.config.amaEnabled
- }
@@ -267,7 +197,7 @@
- })
- } else {
- this.setState({
-- amaMessage: i18n.__('Thank\'s for trusting us')
+- amaMessage: i18n.__("Thank's for trusting us")
- })
- }
-
@@ -285,42 +215,95 @@
- })
- }
-
-- infoMessage () {
+ toggleAutoUpdate() {
+ const newConfig = {
+ autoUpdateEnabled: !this.state.config.autoUpdateEnabled
+@@ -70,11 +33,6 @@
+ ConfigManager.set(newConfig)
+ }
+
+- infoMessage() {
- const { amaMessage } = this.state
- return amaMessage ? <p styleName='policy-confirm'>{amaMessage}</p> : null
- }
-
- render () {
+ render() {
return (
<div styleName='root'>
-@@ -141,22 +99,6 @@ class InfoTab extends React.Component {
- </li>
- </ul>
+@@ -191,41 +149,6 @@
+ </div>
-- <hr styleName='separate-line' />
+ <hr styleName='separate-line' />
-
-- <div styleName='policy'>{i18n.__('Analytics')}</div>
-- <div>{i18n.__('Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.')}</div>
-- <div>{i18n.__('You can see how it works on ')}<a href='https://github.com/BoostIO/Boostnote' onClick={(e) => this.handleLinkClick(e)}>GitHub</a>.</div>
+- <div styleName='group-header2--sub'>{i18n.__('Analytics')}</div>
+- <div>
+- {i18n.__(
+- 'Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.'
+- )}
+- </div>
+- <div>
+- {i18n.__('You can see how it works on ')}
+- <a
+- href='https://github.com/BoostIO/Boostnote'
+- onClick={e => this.handleLinkClick(e)}
+- >
+- GitHub
+- </a>
+- .
+- </div>
- <br />
- <div>{i18n.__('You can choose to enable or disable this option.')}</div>
-- <input onChange={(e) => this.handleConfigChange(e)}
+- <input
+- onChange={e => this.handleConfigChange(e)}
- checked={this.state.config.amaEnabled}
- ref='amaEnabled'
- type='checkbox'
- />
-- {i18n.__('Enable analytics to help improve Boostnote')}<br />
-- <button styleName='policy-submit' onClick={(e) => this.handleSaveButtonClick(e)}>{i18n.__('Save')}</button>
+- {i18n.__('Enable analytics to help improve Boostnote')}
+- <br />
+- <button
+- styleName='policy-submit'
+- onClick={e => this.handleSaveButtonClick(e)}
+- >
+- {i18n.__('Save')}
+- </button>
- <br />
- {this.infoMessage()}
</div>
)
}
-diff --git a/package.json b/package.json
-index 62a0ced..088d576 100644
---- a/package.json
-+++ b/package.json
-@@ -53,8 +53,6 @@
+diff -ura a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js
+--- a/browser/main/NoteList/index.js 2020-02-24 10:11:36.000000000 +0100
++++ b/browser/main/NoteList/index.js 2020-02-29 08:59:00.201132829 +0100
+@@ -16,7 +16,6 @@
+ import path from 'path'
+ import { push, replace } from 'connected-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'
+@@ -807,7 +806,6 @@
+ note: newNote
+ })
+ })
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
+ })
+ .then(() => ee.emit('list:next'))
+ .catch(err => {
+@@ -827,8 +825,6 @@
+ 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 2020-02-24 10:11:36.000000000 +0100
++++ b/package.json 2020-02-29 08:55:37.772693835 +0100
+@@ -56,8 +56,6 @@
"@rokt33r/markdown-it-math": "^4.0.1",
"@rokt33r/season": "^5.3.0",
"@susisu/mte-kernel": "^2.0.0",
@@ -329,6 +312,136 @@
"chart.js": "^2.7.2",
"codemirror": "^5.40.2",
"codemirror-mode-elixir": "^1.1.1",
---
-2.20.1
+diff -ura a/yarn.lock b/yarn.lock
+--- a/yarn.lock 2020-02-24 10:11:36.000000000 +0100
++++ b/yarn.lock 2020-02-29 08:55:43.822651477 +0100
+@@ -632,26 +632,6 @@
+ unique-temp-dir "^1.0.0"
+ update-notifier "^2.3.0"
+
+-aws-sdk-mobile-analytics@^0.9.2:
+- version "0.9.2"
+- resolved "https://registry.yarnpkg.com/aws-sdk-mobile-analytics/-/aws-sdk-mobile-analytics-0.9.2.tgz#b56a6e5206fc8c3975a19170b41536c53f6d5d91"
+- dependencies:
+- aws-sdk ">=2.2.37"
+-
+-aws-sdk@>=2.2.37, aws-sdk@^2.48.0:
+- version "2.247.1"
+- resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.247.1.tgz#be5f220d40665ac91d3a84a51f029fa05560c4ee"
+- dependencies:
+- buffer "4.9.1"
+- events "1.1.1"
+- ieee754 "1.1.8"
+- jmespath "0.15.0"
+- querystring "0.2.0"
+- sax "1.2.1"
+- url "0.10.3"
+- uuid "3.1.0"
+- xml2js "0.4.17"
+-
+ aws-sign2@~0.7.0:
+ version "0.7.0"
+ resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
+@@ -1481,7 +1461,7 @@
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.0.0.tgz#4cb8832d23612589b0406e9e2956c17f06fdf531"
+
+-buffer@4.9.1, buffer@^4.9.0:
++buffer@^4.9.0:
+ version "4.9.1"
+ resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
+ dependencies:
+@@ -3518,7 +3498,7 @@
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.0.tgz#090b4d6cdbd645ed10bf750d4b5407942d7ba163"
+
+-events@1.1.1, events@^1.0.0:
++events@^1.0.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
+
+@@ -4700,10 +4680,6 @@
+ dependencies:
+ harmony-reflect "^1.4.6"
+
+-ieee754@1.1.8:
+- version "1.1.8"
+- resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
+-
+ ieee754@^1.1.4:
+ version "1.1.11"
+ resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.11.tgz#c16384ffe00f5b7835824e67b6f2bd44a5229455"
+@@ -5560,10 +5536,6 @@
+ import-local "^1.0.0"
+ jest-cli "^22.4.4"
+
+-jmespath@0.15.0:
+- version "0.15.0"
+- resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217"
+-
+ js-base64@^2.1.9:
+ version "2.4.5"
+ resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.5.tgz#e293cd3c7c82f070d700fc7a1ca0a2e69f101f92"
+@@ -8609,11 +8581,7 @@
+ version "0.5.8"
+ resolved "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz#d472db228eb331c2506b0e8c15524adb939d12c1"
+
+-sax@1.2.1:
+- version "1.2.1"
+- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a"
+-
+-sax@>=0.6.0, sax@^1.2.1, sax@^1.2.4, sax@~1.2.1:
++sax@^1.2.1, sax@^1.2.4, sax@~1.2.1:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
+
+@@ -9821,13 +9789,6 @@
+ querystringify "^2.0.0"
+ requires-port "^1.0.0"
+
+-url@0.10.3:
+- version "0.10.3"
+- resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64"
+- dependencies:
+- punycode "1.3.2"
+- querystring "0.2.0"
+-
+ url@^0.11.0:
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
+@@ -9879,10 +9840,6 @@
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
+
+-uuid@3.1.0:
+- version "3.1.0"
+- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
+-
+ uuid@^3.0.1, uuid@^3.1.0, uuid@^3.2.1:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
+@@ -10196,23 +10153,10 @@
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
+
+-xml2js@0.4.17:
+- version "0.4.17"
+- resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.17.tgz#17be93eaae3f3b779359c795b419705a8817e868"
+- dependencies:
+- sax ">=0.6.0"
+- xmlbuilder "^4.1.0"
+-
+ xmlbuilder@8.2.2:
+ version "8.2.2"
+ resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773"
+
+-xmlbuilder@^4.1.0:
+- version "4.2.1"
+- resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-4.2.1.tgz#aa58a3041a066f90eaa16c2f5389ff19f3f461a5"
+- dependencies:
+- lodash "^4.0.0"
+-
+ xmldom@0.1.x:
+ version "0.1.27"
+ resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9"
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,8 +1,8 @@
name : boostnote
-version : 0.11.15
-release : 7
+version : 0.15.3
+release : 8
source :
- - https://github.com/BoostIO/Boostnote/archive/v0.11.15.tar.gz : 179c73f8355ba507e0642c633a1616aabb8f5b555a61c4cbb9c61eb3e7d9ff71
+ - https://github.com/BoostIO/Boostnote/archive/v0.15.3.tar.gz : ed8b77652ab8f937d0d537f141bb728b6ca4523d962fd187669d26b53c4f6fd5
license : GPL-3.0-or-later
component : office.notes
networking : yes
@@ -28,13 +28,16 @@
- cups-devel
- git
- nodejs
+ - yarn
+rundeps :
+ - ffmpeg-chromium
setup : |
%patch -p1 < $pkgfiles/remove-analytics.patch
mkdir -p grunt-install
npm install --prefix grunt-install grunt-cli
build : |
- npm install --no-optional
+ yarn
grunt-install/node_modules/grunt-cli/bin/grunt pre-build
install : |
install -dm00755 $installdir/usr/share/boostnote
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -2,8 +2,8 @@
<Source>
<Name>boostnote</Name>
<Packager>
- <Name>Bryan T. Meyers</Name>
- <Email>bmeyers@datadrake.com</Email>
+ <Name>Albert Krenz</Name>
+ <Email>albert.krenz+solus@mailbox.org</Email>
</Packager>
<License>GPL-3.0-or-later</License>
<PartOf>office.notes</PartOf>
@@ -24,12 +24,12 @@
<Path fileType="data">/usr/share/boostnote/Boostnote</Path>
<Path fileType="data">/usr/share/boostnote/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/LICENSES.chromium.html</Path>
- <Path fileType="data">/usr/share/boostnote/blink_image_resources_200_percent.pak</Path>
- <Path fileType="data">/usr/share/boostnote/content_resources_200_percent.pak</Path>
- <Path fileType="data">/usr/share/boostnote/content_shell.pak</Path>
+ <Path fileType="data">/usr/share/boostnote/chrome_100_percent.pak</Path>
+ <Path fileType="data">/usr/share/boostnote/chrome_200_percent.pak</Path>
<Path fileType="data">/usr/share/boostnote/icudtl.dat</Path>
+ <Path fileType="data">/usr/share/boostnote/libEGL.so</Path>
+ <Path fileType="data">/usr/share/boostnote/libGLESv2.so</Path>
<Path fileType="data">/usr/share/boostnote/libffmpeg.so</Path>
- <Path fileType="data">/usr/share/boostnote/libnode.so</Path>
<Path fileType="data">/usr/share/boostnote/locales/am.pak</Path>
<Path fileType="data">/usr/share/boostnote/locales/ar.pak</Path>
<Path fileType="data">/usr/share/boostnote/locales/bg.pak</Path>
@@ -45,7 +45,6 @@
<Path fileType="data">/usr/share/boostnote/locales/es.pak</Path>
<Path fileType="data">/usr/share/boostnote/locales/et.pak</Path>
<Path fileType="data">/usr/share/boostnote/locales/fa.pak</Path>
- <Path fileType="data">/usr/share/boostnote/locales/fake-bidi.pak</Path>
<Path fileType="data">/usr/share/boostnote/locales/fi.pak</Path>
<Path fileType="data">/usr/share/boostnote/locales/fil.pak</Path>
<Path fileType="data">/usr/share/boostnote/locales/fr.pak</Path>
@@ -85,10 +84,13 @@
<Path fileType="data">/usr/share/boostnote/locales/zh-CN.pak</Path>
<Path fileType="data">/usr/share/boostnote/locales/zh-TW.pak</Path>
<Path fileType="data">/usr/share/boostnote/natives_blob.bin</Path>
+ <Path fileType="data">/usr/share/boostnote/resources.pak</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.boostnoterc.sample</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.editorconfig</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.eslintignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/.github/FUNDING.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/.prettierrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.snapcraft/travis_snapcraft.cfg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.vscode/launch.json</Path>
@@ -131,6 +133,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/extra_scripts/codemirror/addon/hyperlink/hyperlink.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/extra_scripts/codemirror/mode/bfm/bfm.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/extra_scripts/codemirror/mode/bfm/bfm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/extra_scripts/codemirror/mode/gfm/gfm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/extra_scripts/codemirror/theme/nord.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/abbrev/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/abbrev/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/abbrev/abbrev.js</Path>
@@ -576,16 +580,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/lib/parsers.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/lib/utils.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/bin/nopt.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/examples/my-program.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/lib/nopt.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/test/basic.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/node_modules/define-property/LICENSE</Path>
@@ -696,10 +696,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/.eslintignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/appveyor.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/changelog.hbs</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/example/async.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/example/sync.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/index.js</Path>
@@ -707,6 +705,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/caller.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/core.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/core.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/is-core.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/node-modules-paths.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/normalize-options.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/sync.js</Path>
@@ -766,6 +765,9 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/other_path/lib/other-lib.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/other_path/root.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/quux/foo/index.js</Path>
@@ -773,8 +775,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/same_names/foo/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/symlinked/package/bar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/symlinked/package/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/without_basedir/main.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver_sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/shadowed_core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/shadowed_core/node_modules/util/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/subdirs.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/symlinks.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ret/LICENSE</Path>
@@ -845,25 +851,14 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/node_modules/extend-shallow/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/node_modules/extend-shallow/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/.jshintrc</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/bower.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/changelog.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/component.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/generate-source-map-resolve.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/lib/decode-uri-component.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/lib/resolve-url.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/lib/source-map-resolve-node.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/source-map-resolve.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/source-map-resolve.js.template</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/test/common.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/test/read.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/test/source-map-resolve.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/test/windows.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/x-package.json5</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/.jshintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/bower.json</Path>
@@ -927,14 +922,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/extend-shallow/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/extend-shallow/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/extend-shallow/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/extend-shallow/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/set-value/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/set-value/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/set-value/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/set-value/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/README.md</Path>
@@ -979,8 +966,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/lib/main-app.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/lib/main-menu.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/lib/main-window.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/lib/main.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/lib/main.development.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/lib/main.production.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/lib/touchbar-menu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/locales/cs.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/da.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/de.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/en.json</Path>
@@ -1001,6 +990,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/locales/tr.json</Path>
<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/.yarn-integrity</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@ava</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>
@@ -1150,6 +1140,14 @@
<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/@braintree/sanitize-url/.nvmrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@braintree/sanitize-url/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@braintree/sanitize-url/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@braintree/sanitize-url/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@braintree/sanitize-url/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@braintree/sanitize-url/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@braintree/sanitize-url/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@braintree/sanitize-url/test/test.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>
@@ -1157,4523 +1155,76 @@
<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/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/@hikerpig/markdown-it-toc-and-anchor/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/dist/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/node_modules/clone/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/node_modules/clone/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/node_modules/clone/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/node_modules/clone/clone.iml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/node_modules/clone/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/node_modules/clone/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@hikerpig/markdown-it-toc-and-anchor/src/index.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/js-sequence-diagrams/LICENCE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/danielbd.woff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/danielbd.woff2</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram-min.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram-min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram-min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram-raphael-min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram-raphael-min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram-raphael.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram-snap-min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram-snap-min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram-snap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/.gitmodules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/README.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/cortex.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/Gruntfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/amdDev.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/copy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/raphael.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/raphael.svg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/raphael.vml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/raphaelTest.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/dev/require.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/eve/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/eve/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/eve/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/eve/e.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/eve/eve.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/eve/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/history.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/license.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/raphael-min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/raphael.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/reference.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/raphael/reference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/CNAME</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/CONTRIBUTING.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/favicon.ico</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/underscore-min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/node_modules/underscore/underscore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/js-sequence-diagrams/package.json</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>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/markdown-it-math/LICENCE</Path>
@@ -5688,6 +1239,32 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/bin/csonc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/lib/cson.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/lib/csonc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/bool.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/boolean_double.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/boolean_single.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/default_hash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/default_singles.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/divide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/line_count.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/line_count_options.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/line_count_wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/nonopt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/reflect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/short.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/usage-options.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/example/xup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/readme.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/test/_.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/test/_/argv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/test/_/bin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/test/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/test/short.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/node_modules/optimist/test/usage.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/LICENSE</Path>
@@ -5712,6 +1289,198 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/text-editor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@types</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/.project</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/files.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/symbols/Environment.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/symbols/Error.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/symbols/InitializationError.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/symbols/JSONInstance.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/symbols/JSONSchema.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/symbols/JSV.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/symbols/Report.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/symbols/ValidationError.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/symbols/_global_.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/docs/symbols/src/jsv.js.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/examples/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/README.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/frame.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/frame/Chain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/frame/Dumper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/frame/Hash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/frame/Link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/frame/Namespace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/frame/Opt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/frame/Reflection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/frame/String.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/frame/Testrun.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/handlers/FOODOC.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/handlers/XMLDOC.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/handlers/XMLDOC/DomReader.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/handlers/XMLDOC/XMLDoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/handlers/XMLDOC/XMLParse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/DocComment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/DocTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/JsDoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/JsPlate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/Lang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/Parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/PluginManager.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/Symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/SymbolSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/TextStream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/Token.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/TokenReader.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/TokenStream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/Util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/lib/JSDOC/Walker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/main.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/plugins/commentSrcJson.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/plugins/frameworkPrototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/plugins/functionCall.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/plugins/publishSrcHilite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/plugins/symbolLink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/plugins/tagParamConfig.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/plugins/tagSynonyms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/run.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/t/TestDoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/t/runner.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/addon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/anon_inner.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/augments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/augments2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/borrows.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/borrows2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/constructs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/encoding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/encoding_other.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/event.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/exports.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/functions_anon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/functions_nested.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/globals.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/ignore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/inner.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/jsdoc_test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/lend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/memberof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/memberof2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/memberof3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/memberof_constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/module.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/multi_methods.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/namespace_nested.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/nocode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/oblit_anon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/overview.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/param_inline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/params_optional.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/prototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/prototype_nested.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/prototype_oblit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/prototype_oblit_constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/public.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/scripts/code.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/scripts/notcode.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/shared.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/shared2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/shortcuts.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/static_this.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/synonyms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/tosource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/app/test/variable_redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/changes.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/conf/sample.conf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/java/build.xml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/java/build_1.4.xml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/java/classes/js.jar</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/java/src/JsDebugRun.java</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/java/src/JsRun.java</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/jsdebug.jar</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/jsrun.jar</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/jsrun.sh</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/allclasses.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/allfiles.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/class.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/index.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/publish.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/static/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/stylesheets/blue_label.gif</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/stylesheets/body_noise.gif</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/stylesheets/body_wrapper_noise.gif</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/stylesheets/box_noise.gif</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/stylesheets/box_wrapper_noise.gif</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/stylesheets/default.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/stylesheets/title_bullet.gif</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/bluelabel/symbol.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/allclasses.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/allfiles.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/class.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/all.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.eot</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.ttf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-bold-webfont.woff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.eot</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.ttf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/fonts/mplus-1m-regular-webfont.woff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/fonts/stylesheet.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/handheld.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/css/screen.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/index.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/javascript/wbos.csstools.mediaqueryfallback.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/publish.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/static/header.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/static/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/codeview/symbol.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/jsdoc/allclasses.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/jsdoc/allfiles.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/jsdoc/class.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/jsdoc/index.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/jsdoc/publish.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/jsdoc/static/default.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/jsdoc/static/header.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/jsdoc/static/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/jsdoc-toolkit/templates/jsdoc/symbol.tmpl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/lib/environments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/lib/json-schema-draft-01.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/lib/json-schema-draft-02.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/lib/json-schema-draft-03.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/lib/jsv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/lib/uri/schemes/urn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/lib/uri/uri.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-01/empty-schema.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-01/hyper-schema.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-01/json-ref.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-01/links.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-01/schema.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-02/empty-schema.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-02/hyper-schema.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-02/json-ref.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-02/links.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-02/schema.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-03/hyper-schema.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-03/json-ref.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-03/links.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/schemas/json-schema-draft-03/schema.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/tests/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/tests/index3.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/tests/index3b.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/tests/qunit.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/tests/qunit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/tests/tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/tests/tests3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/JSV/tests/tests3b.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/abab/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/abab/LICENSE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/abab/README.md</Path>
@@ -5722,26 +1491,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/bin/acorn</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/acorn.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/acorn.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/acorn.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/bin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/dist/walk.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/dist/walk.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/dist/walk.mjs</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/dist/walk.mjs.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/AUTHORS</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/LICENSE</Path>
@@ -5758,16 +1509,20 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/dist/walk.es.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/dist/walk.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/yarn-error.log</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/.tonic_example.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/dist/ajv.bundle.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/dist/ajv.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/dist/ajv.min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/.DS_Store</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/dist/nodent.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/dist/regenerator.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/$data.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/ajv.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/ajv.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/cache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/_rules.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/async.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/equal.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/error_classes.js</Path>
@@ -5778,7 +1533,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/schema_obj.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/ucs2length.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/util.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/data.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/_limit.jst</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/_limitItems.jst</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/_limitLength.jst</Path>
@@ -5786,7 +1540,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/allOf.jst</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/anyOf.jst</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/coerce.def</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/comment.jst</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/const.jst</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/contains.jst</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/custom.jst</Path>
@@ -5796,7 +1549,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/enum.jst</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/errors.def</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/format.jst</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/if.jst</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/items.jst</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/missing.def</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/multipleOf.jst</Path>
@@ -5816,15 +1568,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/_limitProperties.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/allOf.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/anyOf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/comment.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/const.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/contains.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/custom.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/dependencies.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/enum.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/format.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/if.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/items.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/multipleOf.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/not.js</Path>
@@ -5837,23 +1586,30 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/uniqueItems.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/validate.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/keyword.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/data.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/patternGroups.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/$data.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/json-schema-draft-04.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/json-schema-draft-06.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/json-schema-draft-07.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/json-schema-secure.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/json-schema-v5.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/.eslintrc.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/bundle.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/compile-dots.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/info</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/prepare-tests</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/publish-built-version</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/travis-gh-pages</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-red/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-red/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-red/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-red/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-regex/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-regex/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-regex/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-regex/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-wrap/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-wrap/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-wrap/index.js</Path>
@@ -5884,22 +1640,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/lib/help/formatter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/lib/namespace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/lib/utils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/bower.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/demo/angular.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/gruntfile.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/src/angular-sprintf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/src/sprintf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/test/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-equal/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-equal/LICENSE</Path>
@@ -5919,7 +1659,24 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asap/browser-raw.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asap/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asap/raw.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asar/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/lib/ber/errors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/lib/ber/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/lib/ber/reader.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/lib/ber/types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/lib/ber/writer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/tst/ber/reader.test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asn1/tst/ber/writer.test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/assert-plus/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/assert-plus/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/assert-plus/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/assert-plus/assert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/assert-plus/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/coverage.json</Path>
@@ -5992,6 +1749,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/tests/UtilSpec.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/tests/htmlParser/HtmlParserSpec.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/tests/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws-sign2/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws-sign2/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws-sign2/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws-sign2/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws4/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws4/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws4/README.md</Path>
@@ -6237,1534 +1998,792 @@
<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/typeof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/Gruntfile.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/bower.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/build/Gruntfile.ls</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/build/build.ls</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/build/config.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/build/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/client/core.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/client/core.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/client/core.min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/client/library.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/client/library.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/client/library.min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/client/shim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/client/shim.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/client/shim.min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/core/_.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/core/delay.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/core/dict.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/core/function.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/core/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/core/number.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/core/object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/core/regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/core/string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es5/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/date.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/function.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/math.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/number.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/promise.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/reflect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/symbol.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/typed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/weak-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es6/weak-set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/asap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/error.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/math.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/observable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/promise.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/reflect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/symbol.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/system.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/weak-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/es7/weak-set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/_.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/concat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/copy-within.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/entries.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/every.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/fill.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/filter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/find-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/find.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/flat-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/flatten.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/for-each.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/is-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/join.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/last-index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/pop.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/push.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/reduce-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/reduce.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/reverse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/shift.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/slice.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/some.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/sort.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/splice.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/unshift.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/copy-within.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/entries.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/every.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/fill.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/filter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/find-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/find.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/flat-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/flatten.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/for-each.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/join.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/last-index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/reduce-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/reduce.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/slice.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/some.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/sort.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/array/virtual/values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/asap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/clear-immediate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/date/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/date/now.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/date/to-iso-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/date/to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/date/to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/date/to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/delay.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/dict.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/dom-collections/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/dom-collections/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/error/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/error/is-error.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/function/bind.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/function/has-instance.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/function/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/function/name.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/function/part.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/function/virtual/bind.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/function/virtual/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/function/virtual/part.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/get-iterator-method.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/get-iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/is-iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/json/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/json/stringify.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/map/from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/map/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/map/of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/acosh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/asinh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/atanh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/cbrt.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/clamp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/clz32.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/cosh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/deg-per-rad.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/degrees.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/expm1.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/fround.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/fscale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/hypot.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/iaddh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/imul.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/imulh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/isubh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/log10.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/log1p.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/log2.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/rad-per-deg.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/radians.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/scale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/sign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/signbit.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/sinh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/tanh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/trunc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/math/umulh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/epsilon.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/is-finite.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/is-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/is-nan.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/is-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/max-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/min-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/to-fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/to-precision.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/virtual/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/virtual/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/virtual/to-fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/number/virtual/to-precision.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/assign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/classof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/define-getter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/define-properties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/define-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/define-setter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/entries.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/freeze.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/get-own-property-descriptor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/get-own-property-descriptors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/get-own-property-names.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/get-own-property-symbols.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/get-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/is-extensible.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/is-frozen.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/is-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/is-sealed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/is.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/lookup-getter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/lookup-setter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/make.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/prevent-extensions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/seal.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/set-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/object/values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/observable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/promise.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/promise/finally.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/promise/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/promise/try.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/apply.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/construct.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/define-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/define-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/delete-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/delete-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/enumerate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/get-metadata-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/get-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/get-own-metadata-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/get-own-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/get-own-property-descriptor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/get-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/get.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/has-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/has-own-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/has.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/is-extensible.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/own-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/prevent-extensions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/set-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/reflect/set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/regexp/constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/regexp/escape.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/regexp/flags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/regexp/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/regexp/match.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/regexp/replace.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/regexp/search.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/regexp/split.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/regexp/to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/set-immediate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/set-interval.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/set-timeout.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/set/from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/set/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/set/of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/anchor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/big.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/blink.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/bold.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/code-point-at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/ends-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/escape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/fontcolor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/fontsize.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/from-code-point.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/italics.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/link.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/match-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/pad-end.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/pad-start.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/raw.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/repeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/small.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/starts-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/strike.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/sub.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/sup.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/trim-end.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/trim-left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/trim-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/trim-start.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/trim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/unescape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/anchor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/big.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/blink.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/bold.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/code-point-at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/ends-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/escape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/fontcolor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/fontsize.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/italics.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/link.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/match-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/pad-end.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/pad-start.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/repeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/small.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/starts-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/strike.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/sub.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/sup.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/trim-end.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/trim-left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/trim-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/trim-start.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/trim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/string/virtual/unescape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/async-iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/for.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/has-instance.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/is-concat-spreadable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/key-for.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/match.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/observable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/replace.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/search.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/species.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/split.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/to-string-tag.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/symbol/unscopables.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/system/global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/system/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/array-buffer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/data-view.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/float32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/float64-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/int16-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/int32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/int8-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/uint16-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/uint32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/uint8-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/typed/uint8-clamped-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/weak-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/weak-map/from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/weak-map/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/weak-map/of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/weak-set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/weak-set/from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/weak-set/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/fn/weak-set/of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/core/_.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/core/delay.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/core/dict.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/core/function.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/core/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/core/number.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/core/object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/core/regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/core/string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es5/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/date.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/function.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/math.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/number.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/promise.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/reflect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/symbol.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/typed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/weak-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es6/weak-set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/asap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/error.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/math.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/observable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/promise.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/reflect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/symbol.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/system.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/weak-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/es7/weak-set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/_.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/concat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/copy-within.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/entries.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/every.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/fill.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/filter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/find-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/find.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/flat-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/flatten.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/for-each.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/is-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/join.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/last-index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/pop.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/push.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/reduce-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/reduce.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/reverse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/shift.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/slice.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/some.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/sort.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/splice.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/unshift.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/copy-within.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/entries.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/every.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/fill.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/filter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/find-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/find.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/flat-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/flatten.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/for-each.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/join.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/last-index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/reduce-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/reduce.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/slice.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/some.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/sort.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/array/virtual/values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/asap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/clear-immediate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/date/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/date/now.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/date/to-iso-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/date/to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/date/to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/date/to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/delay.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/dict.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/dom-collections/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/dom-collections/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/error/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/error/is-error.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/function/bind.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/function/has-instance.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/function/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/function/name.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/function/part.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/function/virtual/bind.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/function/virtual/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/function/virtual/part.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/get-iterator-method.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/get-iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/is-iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/json/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/json/stringify.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/map/from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/map/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/map/of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/acosh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/asinh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/atanh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/cbrt.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/clamp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/clz32.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/cosh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/deg-per-rad.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/degrees.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/expm1.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/fround.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/fscale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/hypot.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/iaddh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/imul.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/imulh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/isubh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/log10.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/log1p.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/log2.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/rad-per-deg.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/radians.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/scale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/sign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/signbit.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/sinh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/tanh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/trunc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/math/umulh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/epsilon.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/is-finite.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/is-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/is-nan.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/is-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/max-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/min-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/to-fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/to-precision.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/virtual/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/virtual/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/virtual/to-fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/number/virtual/to-precision.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/assign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/classof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/define-getter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/define-properties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/define-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/define-setter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/entries.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/freeze.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/get-own-property-descriptor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/get-own-property-descriptors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/get-own-property-names.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/get-own-property-symbols.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/get-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/is-extensible.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/is-frozen.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/is-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/is-sealed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/is.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/lookup-getter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/lookup-setter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/make.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/prevent-extensions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/seal.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/set-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/object/values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/observable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/promise.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/promise/finally.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/promise/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/promise/try.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/apply.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/construct.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/define-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/define-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/delete-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/delete-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/enumerate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/get-metadata-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/get-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/get-own-metadata-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/get-own-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/get-own-property-descriptor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/get-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/get.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/has-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/has-own-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/has.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/is-extensible.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/own-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/prevent-extensions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/set-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/reflect/set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/regexp/constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/regexp/escape.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/regexp/flags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/regexp/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/regexp/match.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/regexp/replace.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/regexp/search.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/regexp/split.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/regexp/to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/set-immediate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/set-interval.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/set-timeout.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/set/from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/set/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/set/of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/anchor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/big.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/blink.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/bold.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/code-point-at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/ends-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/escape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/fontcolor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/fontsize.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/from-code-point.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/italics.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/link.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/match-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/pad-end.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/pad-start.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/raw.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/repeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/small.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/starts-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/strike.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/sub.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/sup.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/trim-end.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/trim-left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/trim-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/trim-start.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/trim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/unescape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/anchor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/big.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/blink.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/bold.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/code-point-at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/ends-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/escape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/fontcolor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/fontsize.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/italics.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/link.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/match-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/pad-end.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/pad-start.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/repeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/small.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/starts-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/strike.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/sub.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/sup.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/trim-end.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/trim-left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/trim-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/trim-start.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/trim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/string/virtual/unescape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/async-iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/for.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/has-instance.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/is-concat-spreadable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/key-for.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/match.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/observable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/replace.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/search.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/species.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/split.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/to-string-tag.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/symbol/unscopables.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/system/global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/system/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/array-buffer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/data-view.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/float32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/float64-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/int16-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/int32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/int8-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/uint16-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/uint32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/uint8-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/typed/uint8-clamped-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/weak-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/weak-map/from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/weak-map/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/weak-map/of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/weak-set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/weak-set/from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/weak-set/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/fn/weak-set/of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_a-function.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_a-number-value.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_add-to-unscopables.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_advance-string-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_an-instance.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_an-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_array-copy-within.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_array-fill.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_array-from-iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_array-includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_array-methods.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_array-reduce.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_array-species-constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_array-species-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_bind.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_classof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_cof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_collection-strong.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_collection-to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_collection-weak.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_collection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_core.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_create-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_ctx.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_date-to-iso-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_date-to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_defined.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_descriptors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_dom-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_entry-virtual.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_enum-bug-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_enum-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_export.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_fails-is-regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_fails.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_fix-re-wks.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_flags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_flatten-into-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_for-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_function-to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_has.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_hide.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_ie8-dom-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_inherit-if-required.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_invoke.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_iobject.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_is-array-iter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_is-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_is-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_is-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_is-regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_iter-call.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_iter-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_iter-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_iter-detect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_iter-step.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_iterators.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_keyof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_library.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_math-expm1.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_math-fround.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_math-log1p.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_math-scale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_math-sign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_meta.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_microtask.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_native-weak-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_new-promise-capability.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-assign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-dp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-dps.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-forced-pam.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-gopd.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-gopn-ext.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-gopn.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-gops.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-gpo.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-keys-internal.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-pie.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-sap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_object-to-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_own-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_partial.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_path.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_perform.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_promise-resolve.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_property-desc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_redefine-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_redefine.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_regexp-exec-abstract.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_regexp-exec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_replacer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_same-value.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_set-collection-from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_set-collection-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_set-proto.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_set-species.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_set-to-string-tag.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_shared-key.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_shared.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_species-constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_strict-method.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_string-at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_string-context.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_string-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_string-pad.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_string-repeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_string-trim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_string-ws.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_task.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_to-absolute-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_to-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_to-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_to-iobject.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_to-length.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_to-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_typed-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_typed-buffer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_typed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_uid.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_user-agent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_validate-collection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_wks-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_wks-ext.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_wks.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.delay.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.dict.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.function.part.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.get-iterator-method.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.get-iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.is-iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.number.iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.object.classof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.object.define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.object.is-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.object.make.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.regexp.escape.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.string.escape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/core.string.unescape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es5.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.copy-within.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.every.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.fill.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.filter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.find-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.find.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.for-each.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.is-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.join.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.last-index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.reduce-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.reduce.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.slice.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.some.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.sort.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.array.species.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.date.now.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.date.to-iso-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.date.to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.date.to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.date.to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.function.bind.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.function.has-instance.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.function.name.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.acosh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.asinh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.atanh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.cbrt.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.clz32.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.cosh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.expm1.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.fround.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.hypot.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.imul.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.log10.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.log1p.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.log2.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.sign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.sinh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.tanh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.math.trunc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.epsilon.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.is-finite.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.is-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.is-nan.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.is-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.max-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.min-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.to-fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.number.to-precision.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.assign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.define-properties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.define-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.freeze.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.get-own-property-descriptor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.get-own-property-names.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.get-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.is-extensible.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.is-frozen.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.is-sealed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.is.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.prevent-extensions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.seal.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.set-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.object.to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.promise.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.apply.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.construct.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.define-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.delete-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.enumerate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.get-own-property-descriptor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.get-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.get.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.has.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.is-extensible.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.own-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.prevent-extensions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.set-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.exec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.flags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.match.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.replace.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.search.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.split.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.anchor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.big.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.blink.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.bold.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.code-point-at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.ends-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.fontcolor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.fontsize.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.from-code-point.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.italics.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.link.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.raw.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.repeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.small.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.starts-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.strike.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.sub.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.sup.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.string.trim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.symbol.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.array-buffer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.data-view.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.float32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.float64-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.int16-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.int32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.int8-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.uint16-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.uint32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.uint8-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.typed.uint8-clamped-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.weak-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.weak-set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.array.flat-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.array.flatten.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.array.includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.asap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.error.is-error.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.map.from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.map.of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.map.to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.clamp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.deg-per-rad.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.degrees.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.fscale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.iaddh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.imulh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.isubh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.rad-per-deg.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.radians.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.scale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.signbit.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.math.umulh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.object.define-getter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.object.define-setter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.object.entries.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.object.get-own-property-descriptors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.object.lookup-getter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.object.lookup-setter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.object.values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.observable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.promise.finally.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.promise.try.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.reflect.define-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.reflect.delete-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.reflect.get-metadata-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.reflect.get-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.reflect.get-own-metadata-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.reflect.get-own-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.reflect.has-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.reflect.has-own-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.reflect.metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.set.from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.set.of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.set.to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.string.at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.string.match-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.string.pad-end.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.string.pad-start.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.string.trim-left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.string.trim-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.symbol.async-iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.symbol.observable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.system.global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.weak-map.from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.weak-map.of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.weak-set.from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es7.weak-set.of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/web.dom.iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/web.immediate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/web.timers.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/shim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/stage/0.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/stage/1.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/stage/2.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/stage/3.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/stage/4.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/stage/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/stage/pre.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/web/dom-collections.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/web/immediate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/web/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/web/timers.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_a-function.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_a-number-value.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_add-to-unscopables.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_advance-string-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_an-instance.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_an-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_array-copy-within.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_array-fill.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_array-from-iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_array-includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_array-methods.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_array-reduce.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_array-species-constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_array-species-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_bind.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_classof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_cof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_collection-strong.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_collection-to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_collection-weak.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_collection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_core.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_create-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_ctx.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_date-to-iso-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_date-to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_defined.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_descriptors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_dom-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_entry-virtual.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_enum-bug-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_enum-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_export.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_fails-is-regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_fails.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_fix-re-wks.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_flags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_flatten-into-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_for-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_function-to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_has.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_hide.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_ie8-dom-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_inherit-if-required.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_invoke.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_iobject.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_is-array-iter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_is-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_is-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_is-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_is-regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_iter-call.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_iter-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_iter-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_iter-detect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_iter-step.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_iterators.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_keyof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_library.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_math-expm1.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_math-fround.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_math-log1p.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_math-scale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_math-sign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_meta.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_microtask.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_native-weak-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_new-promise-capability.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-assign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-dp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-dps.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-forced-pam.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-gopd.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-gopn-ext.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-gopn.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-gops.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-gpo.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-keys-internal.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-pie.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-sap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_object-to-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_own-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_partial.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_path.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_perform.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_promise-resolve.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_property-desc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_redefine-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_redefine.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_regexp-exec-abstract.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_regexp-exec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_replacer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_same-value.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_set-collection-from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_set-collection-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_set-proto.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_set-species.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_set-to-string-tag.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_shared-key.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_shared.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_species-constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_strict-method.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_string-at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_string-context.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_string-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_string-pad.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_string-repeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_string-trim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_string-ws.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_task.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_to-absolute-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_to-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_to-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_to-iobject.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_to-length.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_to-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_typed-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_typed-buffer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_typed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_uid.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_user-agent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_validate-collection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_wks-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_wks-ext.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_wks.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.delay.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.dict.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.function.part.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.get-iterator-method.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.get-iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.is-iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.number.iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.object.classof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.object.define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.object.is-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.object.make.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.regexp.escape.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.string.escape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/core.string.unescape-html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es5.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.copy-within.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.every.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.fill.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.filter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.find-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.find.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.for-each.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.is-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.join.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.last-index-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.reduce-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.reduce.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.slice.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.some.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.sort.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.array.species.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.date.now.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.date.to-iso-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.date.to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.date.to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.date.to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.function.bind.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.function.has-instance.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.function.name.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.acosh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.asinh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.atanh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.cbrt.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.clz32.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.cosh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.expm1.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.fround.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.hypot.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.imul.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.log10.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.log1p.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.log2.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.sign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.sinh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.tanh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.math.trunc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.epsilon.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.is-finite.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.is-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.is-nan.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.is-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.max-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.min-safe-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.to-fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.number.to-precision.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.assign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.define-properties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.define-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.freeze.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.get-own-property-descriptor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.get-own-property-names.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.get-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.is-extensible.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.is-frozen.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.is-sealed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.is.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.prevent-extensions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.seal.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.set-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.object.to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.parse-float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.parse-int.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.promise.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.apply.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.construct.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.define-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.delete-property.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.enumerate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.get-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.get.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.has.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.is-extensible.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.own-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.prevent-extensions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.set-prototype-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.exec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.flags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.match.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.replace.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.search.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.split.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.anchor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.big.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.blink.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.bold.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.code-point-at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.ends-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.fixed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.fontcolor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.fontsize.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.from-code-point.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.italics.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.link.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.raw.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.repeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.small.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.starts-with.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.strike.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.sub.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.sup.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.trim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.symbol.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.array-buffer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.data-view.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.float32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.float64-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.int16-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.int32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.int8-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.uint16-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.uint32-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.uint8-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.typed.uint8-clamped-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.weak-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.weak-set.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.array.flat-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.array.flatten.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.array.includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.asap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.error.is-error.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.map.from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.map.of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.map.to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.clamp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.deg-per-rad.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.degrees.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.fscale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.iaddh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.imulh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.isubh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.rad-per-deg.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.radians.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.scale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.signbit.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.math.umulh.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.object.define-getter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.object.define-setter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.object.entries.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.object.get-own-property-descriptors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.object.lookup-getter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.object.lookup-setter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.object.values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.observable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.promise.finally.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.promise.try.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.reflect.define-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.reflect.delete-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.reflect.get-metadata-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.reflect.get-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.reflect.get-own-metadata-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.reflect.get-own-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.reflect.has-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.reflect.has-own-metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.reflect.metadata.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.set.from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.set.of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.set.to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.string.at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.string.match-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.string.pad-end.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.string.pad-start.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.string.trim-left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.string.trim-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.symbol.async-iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.symbol.observable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.system.global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.weak-map.from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.weak-map.of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.weak-set.from.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es7.weak-set.of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_add-to-unscopables.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_collection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_export.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_library.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_path.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_redefine-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_redefine.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_regexp-exec-abstract.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_regexp-exec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_set-species.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.date.to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.date.to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.date.to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.function.name.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.number.constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.object.to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.exec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.flags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.match.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.replace.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.search.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.split.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.to-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/web.dom.iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/web.dom.iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/web.immediate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/web.timers.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/shim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/stage/0.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/stage/1.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/stage/2.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/stage/3.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/stage/4.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/stage/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/stage/pre.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/web/dom-collections.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/web/immediate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/web/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/web/timers.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/package-lock.json</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/balanced-match/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/balanced-match/LICENSE.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/balanced-match/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/balanced-match/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/balanced-match/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/bcrypt-pbkdf/CONTRIBUTING.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/bcrypt-pbkdf/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/bcrypt-pbkdf/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/bcrypt-pbkdf/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/bcrypt-pbkdf/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/node_modules/balanced-match/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/node_modules/balanced-match/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/node_modules/balanced-match/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/node_modules/balanced-match/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/node_modules/balanced-match/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/browser-process-hrtime/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/browser-process-hrtime/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/browser-process-hrtime/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/browser-process-hrtime/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/browser-process-hrtime/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/buffer-from/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/buffer-from/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/buffer-from/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/buffer-from/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/buffer-from/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/camel-case/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/camel-case/camel-case.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/camel-case/camel-case.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/camel-case/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/camelcase/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/camelcase/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/camelcase/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/camelcase/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/capture-stack-trace/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/capture-stack-trace/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/capture-stack-trace/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/capture-stack-trace/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/caseless/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/caseless/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/caseless/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/caseless/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/caseless/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/index.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/node_modules/has-flag/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/node_modules/has-flag/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/node_modules/has-flag/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/node_modules/has-flag/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/node_modules/supports-color/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/node_modules/supports-color/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/node_modules/supports-color/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/node_modules/supports-color/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/node_modules/supports-color/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/templates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/types/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/.eslintignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/.htmllintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/MAINTAINING.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/book.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/bower.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/composer.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/Chart.bundle.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/Chart.bundle.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/Chart.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/Chart.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/Chart.min.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/Chart.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/cartesian/category.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/cartesian/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/cartesian/linear.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/cartesian/logarithmic.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/cartesian/time.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/labelling.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/radial/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/radial/linear.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/styling.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/area.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/bar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/bubble.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/doughnut.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/line.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/mixed.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/polar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/radar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/scatter.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/animations.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/elements.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/layout.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/legend.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/title.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/tooltip.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/api.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/axes.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/charts.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/contributing.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/plugins.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/updates.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/colors.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/device-pixel-ratio.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/fonts.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/interactions/events.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/interactions/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/interactions/modes.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/options.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/responsive.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/getting-started/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/getting-started/installation.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/getting-started/integration.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/getting-started/usage.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/FontAwesome.otf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/fontawesome-webfont.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-anchorjs/anchor-style.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/Chart.bundle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/Chart.bundle.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/Chart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/Chart.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/chartjs-plugin-deferred.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/chartjs-plugin-deferred.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-fontsettings/fontsettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-fontsettings/website.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-ga/plugin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-highlight/ebook.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-highlight/website.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-search-plus/jquery.mark.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-search-plus/search.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-search-plus/search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-sharing/buttons.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/images/apple-touch-icon-precomposed-152.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/images/favicon.ico</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/theme.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/notes/comparison.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/notes/extensions.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/notes/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/notes/license.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/search_plus_index.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/SUMMARY.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/cartesian/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/cartesian/category.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/cartesian/linear.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/cartesian/logarithmic.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/cartesian/time.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/labelling.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/radial/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/radial/linear.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/styling.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/area.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/bar.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/bubble.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/doughnut.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/line.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/mixed.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/polar.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/radar.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/scatter.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/animations.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/elements.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/layout.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/legend.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/title.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/tooltip.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/api.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/axes.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/charts.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/contributing.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/plugins.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/updates.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/colors.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/device-pixel-ratio.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/fonts.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/interactions/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/interactions/events.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/interactions/modes.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/options.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/responsive.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/getting-started/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/getting-started/installation.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/getting-started/integration.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/getting-started/usage.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/notes/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/notes/comparison.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/notes/extensions.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/notes/license.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/gulpfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/karma.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/ender.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/af.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ar-dz.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ar-kw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ar-ly.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ar-ma.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ar-sa.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ar-tn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/az.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/be.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/bg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/bm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/bn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/bo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/br.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/bs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ca.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/cs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/cv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/cy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/da.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/de-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/de-ch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/de.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/dv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/el.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/en-au.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/en-ca.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/en-gb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/en-ie.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/en-il.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/en-nz.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/eo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/es-do.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/es-us.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/et.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/eu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/fa.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/fi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/fo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/fr-ca.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/fr-ch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/fr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/fy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/gd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/gl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/gom-latn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/gu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/he.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/hi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/hr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/hu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/hy-am.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/id.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/it.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ja.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/jv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ka.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/kk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/km.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/kn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ko.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ky.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/lb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/lo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/lt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/lv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/me.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/mi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/mk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/mn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/mr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ms-my.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/mt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/my.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/nb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ne.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/nl-be.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/nl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/nn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/pa-in.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/pl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/pt-br.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/pt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ro.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/sd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/se.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/si.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/sk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/sl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/sq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/sr-cyrl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/sr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ss.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/sv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/sw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ta.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/te.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/tet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/tg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/th.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/tl-ph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/tlh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/tr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/tzl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/tzm-latn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/tzm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ug-cn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/uk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/ur.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/uz-latn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/uz.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/vi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/x-pseudo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/yo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/zh-cn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/zh-hk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/locale/zh-tw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/min/locales.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/min/locales.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/min/moment-with-locales.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/min/moment-with-locales.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/min/moment.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/moment.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/moment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/package.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/check-overflow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/date-from-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/from-anything.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/from-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/from-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/from-string-and-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/from-string-and-format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/from-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/local.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/parsing-flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/utc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/create/valid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/abs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/add-subtract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/as.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/bubble.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/duration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/humanize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/iso-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/prototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/duration/valid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/format/format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/base-config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/calendar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/en.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/formats.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/invalid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/lists.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/locale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/locales.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/ordinal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/pre-post-format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/prototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/relative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/locale/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/add-subtract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/calendar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/compare.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/creation-data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/diff.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/get-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/locale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/min-max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/moment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/prototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/start-end-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/to-type.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/to.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/moment/valid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/parse/regex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/parse/token.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/aliases.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/constants.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/day-of-month.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/day-of-week.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/day-of-year.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/hour.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/millisecond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/minute.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/month.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/offset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/priorities.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/quarter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/second.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/timestamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/timezone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/units.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/week-calendar-utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/week-year.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/week.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/units/year.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/abs-ceil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/abs-floor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/abs-round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/compare-arrays.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/deprecate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/extend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/has-own-prop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/hooks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/is-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/is-date.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/is-function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/is-number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/is-object-empty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/is-undefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/mod.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/to-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/lib/utils/zero-fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/af.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ar-dz.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ar-kw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ar-ly.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ar-ma.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ar-sa.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ar-tn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/az.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/be.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/bg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/bm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/bn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/bo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/br.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/bs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ca.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/cs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/cv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/cy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/da.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/de-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/de-ch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/de.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/dv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/el.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/en-au.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/en-ca.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/en-gb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/en-ie.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/en-il.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/en-nz.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/eo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/es-do.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/es-us.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/et.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/eu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/fa.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/fi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/fo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/fr-ca.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/fr-ch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/fr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/fy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/gd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/gl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/gom-latn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/gu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/he.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/hi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/hr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/hu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/hy-am.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/id.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/it.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ja.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/jv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ka.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/kk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/km.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/kn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ko.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ky.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/lb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/lo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/lt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/lv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/me.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/mi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/mk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/mn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/mr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ms-my.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/mt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/my.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/nb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ne.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/nl-be.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/nl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/nn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/pa-in.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/pl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/pt-br.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/pt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ro.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/sd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/se.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/si.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/sk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/sl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/sq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/sr-cyrl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/sr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ss.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/sv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/sw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ta.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/te.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/tet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/tg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/th.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/tl-ph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/tlh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/tr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/tzl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/tzm-latn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/tzm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ug-cn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/uk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/ur.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/uz-latn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/uz.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/vi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/x-pseudo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/yo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/zh-cn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/zh-hk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/locale/zh-tw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/node_modules/moment/src/moment.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/advanced/data-labelling.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/advanced/progress-bar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/area/analyser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/area/line-boundaries.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/area/line-datasets.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/area/line-stacked.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/area/radar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bar/horizontal.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bar/multi-axis.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bar/stacked-group.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bar/stacked.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bar/vertical.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bubble.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/combo-bar-line.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/doughnut.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/basic.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/interpolation-modes.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/line-styles.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/multi-axis.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/point-sizes.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/point-styles.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/skip-points.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/stepped.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/pie.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/polar-area.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/radar-skip-points.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/radar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/scatter/basic.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/scatter/multi-axis.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/favicon.ico</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/legend/point-style.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/legend/positioning.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/logo.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/samples.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/filtering-labels.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/gridlines-display.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/gridlines-style.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/linear/min-max-suggested.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/linear/min-max.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/linear/step-size.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/logarithmic/line.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/logarithmic/scatter.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/multiline-labels.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/non-numeric-y.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/time/combo.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/time/financial.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/time/line-point-data.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/time/line.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/toggle-scale-type.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scriptable/bubble.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/border.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/callbacks.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/custom-line.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/custom-pie.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/custom-points.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/interactions.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/positioning.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/scripts/deploy.sh</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/scripts/release.sh</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/chart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Bar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Bubble.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Doughnut.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.PolarArea.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Radar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Scatter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.bar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.bubble.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.doughnut.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.polarArea.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.radar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.scatter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.animation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.controller.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.datasetController.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.element.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.helpers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.interaction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.layouts.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.plugins.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.scale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.scaleService.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.ticks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.tooltip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/elements/element.arc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/elements/element.line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/elements/element.point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/elements/element.rectangle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/elements/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/helpers/helpers.canvas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/helpers/helpers.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/helpers/helpers.easing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/helpers/helpers.options.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/helpers/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/platforms/platform.basic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/platforms/platform.dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/platforms/platform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/plugins/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/plugins/plugin.filler.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/plugins/plugin.legend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/plugins/plugin.title.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.category.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.linear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.linearbase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.logarithmic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.radialLinear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.time.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-absolute.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-absolute.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-flex-offset.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-flex-offset.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-flex.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-flex.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-max.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-max.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-min-interval.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-min-interval.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-multiple.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-multiple.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-no-overlap.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-no-overlap.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-offset.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-offset.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-single-xy.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-single-xy.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-single.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-single.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-stacked.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-stacked.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/core.scale/label-offset-vertical-axes.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/core.scale/label-offset-vertical-axes.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin-spline.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin-spline.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/jasmine.context.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/jasmine.index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/jasmine.matchers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/jasmine.utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.bar.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.bubble.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.doughnut.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.line.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.polarArea.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.radar.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.scatter.test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.controller.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.datasetController.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.element.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.helpers.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.interaction.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.layouts.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.plugin.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.scale.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.scaleService.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.ticks.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.tooltip.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/element.arc.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/element.line.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/element.point.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/element.rectangle.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/global.defaults.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/global.deprecations.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/helpers.canvas.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/helpers.core.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/helpers.easing.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/helpers.options.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/platform.dom.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/plugin.filler.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/plugin.legend.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/plugin.title.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/scale.category.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/scale.linear.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/scale.logarithmic.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/scale.radialLinear.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/scale.time.tests.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color-string/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color-string/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color-string/LICENSE</Path>
@@ -7776,24 +2795,488 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/node_modules/color-convert/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/node_modules/color-convert/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/node_modules/color-convert/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/node_modules/color-convert/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/node_modules/color-convert/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/node_modules/color-convert/conversions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/node_modules/color-convert/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/node_modules/color-convert/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/node_modules/color-convert/test/basic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/node_modules/color-convert/test/speed.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chromium-pickle-js/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chromium-pickle-js/lib/exports.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chromium-pickle-js/lib/pickle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chromium-pickle-js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/CONTRIBUTING.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/HISTORY.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/bower.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/dedupe.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/History.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/clean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/hack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-0/optimize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-1/optimize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-1/shorten-hex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-1/shorten-hsl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-1/shorten-rgb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-1/sort-selectors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-1/tidy-at-rule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-1/tidy-block.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-1/tidy-rules.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/break-up.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/can-override.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/compactable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/extract-properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/invalid-property-error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/is-mergeable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/merge-adjacent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/merge-media-queries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/merge-non-adjacent-by-body.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/merge-non-adjacent-by-selector.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/optimize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/every-values-pair.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/find-component-in.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/has-inherit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/is-component-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/is-mergeable-shorthand.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/merge-into-shorthands.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/optimize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/override-properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/overrides-non-component-shorthand.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/populate-components.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/understandable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/properties/vendor-prefixes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/reduce-non-adjacent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/remove-duplicate-font-at-rules.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/remove-duplicate-media-queries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/remove-duplicates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/remove-unused-at-rules.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/reorderable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/restore-with-components.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/restore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/restructure.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/rules-overlap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/specificities-overlap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/specificity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/level-2/tidy-rule-duplicates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/remove-unused.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/restore-from-optimizing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/validator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/optimizer/wrap-for-optimizing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/options/compatibility.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/options/fetch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/options/format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/options/inline-request.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/options/inline-timeout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/options/inline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/options/optimization-level.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/options/rebase-to.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/options/rebase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/options/rounding-precision.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/apply-source-maps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/extract-import-url-and-media.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/input-source-map-tracker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/is-allowed-resource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/load-original-sources.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/load-remote-resource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/match-data-uri.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/normalize-path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/read-sources.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/rebase-local-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/rebase-remote-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/rebase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/restore-import.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/reader/rewrite-url.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/tokenizer/marker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/tokenizer/token.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/tokenizer/tokenize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/clone-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/format-position.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/has-protocol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/is-data-uri-resource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/is-http-resource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/is-https-resource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/is-import.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/is-remote-resource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/natural-compare.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/override.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/utils/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/writer/helpers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/writer/one-time.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/writer/simple.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/lib/writer/source-maps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/clean-css/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/node_modules/string-width/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/node_modules/string-width/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/node_modules/string-width/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/node_modules/string-width/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/node_modules/strip-ansi/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/node_modules/strip-ansi/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/node_modules/strip-ansi/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/node_modules/strip-ansi/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cliui/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/co/History.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/co/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/co/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/co/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/co/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/code-point-at/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/code-point-at/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/code-point-at/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/code-point-at/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/.eslintignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/.eslintrc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.m.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.m.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.umd.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.umd.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/elixir.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/elixir.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/elixir.mjs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/CONTRIBUTING.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/comment/comment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/comment/continuecomment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/dialog/dialog.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/dialog/dialog.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/display/autorefresh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/display/fullscreen.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/display/fullscreen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/display/panel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/display/placeholder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/display/rulers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/edit/closebrackets.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/edit/closetag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/edit/continuelist.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/edit/matchbrackets.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/edit/matchtags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/edit/trailingspace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/fold/brace-fold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/fold/comment-fold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/fold/foldcode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/fold/foldgutter.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/fold/foldgutter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/fold/indent-fold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/fold/markdown-fold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/fold/xml-fold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/hint/anyword-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/hint/css-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/hint/html-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/hint/javascript-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/hint/show-hint.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/hint/show-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/hint/sql-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/hint/xml-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/lint/coffeescript-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/lint/css-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/lint/html-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/lint/javascript-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/lint/json-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/lint/lint.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/lint/lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/lint/yaml-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/merge/merge.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/merge/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/mode/loadmode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/mode/multiplex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/mode/multiplex_test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/mode/overlay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/mode/simple.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/runmode/colorize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/runmode/runmode-standalone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/runmode/runmode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/runmode/runmode.node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/scroll/annotatescrollbar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/scroll/scrollpastend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/scroll/simplescrollbars.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/scroll/simplescrollbars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/search/jump-to-line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/search/match-highlighter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/search/matchesonscrollbar.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/search/matchesonscrollbar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/search/search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/search/searchcursor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/selection/active-line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/selection/mark-selection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/selection/selection-pointer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/tern/tern.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/tern/tern.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/tern/worker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/addon/wrap/hardwrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/keymap/emacs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/keymap/sublime.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/keymap/vim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/lib/codemirror.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/lib/codemirror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/apl/apl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/asciiarmor/asciiarmor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/asn.1/asn.1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/asterisk/asterisk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/brainfuck/brainfuck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/clike/clike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/clojure/clojure.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/cmake/cmake.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/cobol/cobol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/coffeescript/coffeescript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/commonlisp/commonlisp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/crystal/crystal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/css/css.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/cypher/cypher.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/d/d.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/dart/dart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/diff/diff.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/django/django.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/dockerfile/dockerfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/dtd/dtd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/dylan/dylan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/ebnf/ebnf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/ecl/ecl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/eiffel/eiffel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/elm/elm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/erlang/erlang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/factor/factor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/fcl/fcl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/forth/forth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/fortran/fortran.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/gas/gas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/gfm/gfm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/gherkin/gherkin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/go/go.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/groovy/groovy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/haml/haml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/handlebars/handlebars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/haskell-literate/haskell-literate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/haskell/haskell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/haxe/haxe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/htmlembedded/htmlembedded.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/htmlmixed/htmlmixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/http/http.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/idl/idl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/javascript/javascript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/jinja2/jinja2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/jsx/jsx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/julia/julia.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/livescript/livescript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/lua/lua.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/markdown/markdown.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/mathematica/mathematica.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/mbox/mbox.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/meta.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/mirc/mirc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/mllike/mllike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/modelica/modelica.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/mscgen/mscgen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/mumps/mumps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/nginx/nginx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/nsis/nsis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/ntriples/ntriples.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/octave/octave.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/oz/oz.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/pascal/pascal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/pegjs/pegjs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/perl/perl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/php/php.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/pig/pig.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/powershell/powershell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/properties/properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/protobuf/protobuf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/pug/pug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/puppet/puppet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/python/python.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/q/q.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/r/r.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/rpm/changes/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/rpm/rpm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/rst/rst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/ruby/ruby.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/rust/rust.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/sas/sas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/sass/sass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/scheme/scheme.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/shell/shell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/sieve/sieve.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/slim/slim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/smalltalk/smalltalk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/smarty/smarty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/solr/solr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/soy/soy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/sparql/sparql.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/spreadsheet/spreadsheet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/sql/sql.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/stex/stex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/stylus/stylus.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/swift/swift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/tcl/tcl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/textile/textile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/tiddlywiki/tiddlywiki.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/tiddlywiki/tiddlywiki.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/tiki/tiki.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/tiki/tiki.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/toml/toml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/tornado/tornado.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/troff/troff.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/ttcn-cfg/ttcn-cfg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/ttcn/ttcn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/turtle/turtle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/twig/twig.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/vb/vb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/vbscript/vbscript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/velocity/velocity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/verilog/verilog.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/vhdl/vhdl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/vue/vue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/webidl/webidl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/xml/xml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/xquery/xquery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/yacas/yacas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/yaml/yaml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/mode/z80/z80.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/codemirror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/Display.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/focus.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/gutters.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/highlight_worker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/line_numbers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/mode_state.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/operations.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/scroll_events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/scrollbars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/scrolling.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/selection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/update_display.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/update_line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/update_lines.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/display/view_tracking.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/CodeMirror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/commands.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/deleteNearSelection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/drop_events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/fromTextArea.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/global_events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/key_events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/legacy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/main.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/methods.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/mouse_events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/options.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/edit/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/input/ContentEditableInput.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/input/TextareaInput.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/input/indent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/input/input.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/input/keymap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/input/keynames.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/input/movement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/line/highlight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/line/line_data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/line/pos.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/line/saw_special_spans.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/line/spans.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/line/utils_line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/measurement/position_measurement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/measurement/widgets.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/model/Doc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/model/change_measurement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/model/changes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/model/chunk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/model/document_data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/model/history.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/model/line_widget.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/model/mark_text.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/model/selection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/model/selection_updates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/modes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/util/StringStream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/util/bidi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/util/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/util/dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/util/event.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/util/feature_detection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/util/misc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/src/util/operation_group.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/3024-day.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/3024-night.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/abcdef.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/ambiance-mobile.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/ambiance.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/base16-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/base16-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/bespin.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/blackboard.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/cobalt.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/colorforth.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/darcula.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/dracula.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/duotone-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/duotone-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/eclipse.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/elegant.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/erlang-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/gruvbox-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/hopscotch.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/icecoder.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/idea.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/isotope.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/lesser-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/liquibyte.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/lucario.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/material.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/mbo.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/mdn-like.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/midnight.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/monokai.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/neat.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/neo.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/night.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/oceanic-next.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/panda-syntax.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/paraiso-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/paraiso-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/pastel-on-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/railscasts.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/rubyblue.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/seti.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/shadowfox.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/solarized.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/ssms.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/the-matrix.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/tomorrow-night-bright.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/tomorrow-night-eighties.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/ttcn.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/twilight.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/vibrant-ink.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/xq-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/xq-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/yeti.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/node_modules/codemirror/theme/zenburn.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/AUTHORS</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/CONTRIBUTING.md</Path>
@@ -8096,7 +3579,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/neat.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/neo.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/night.css</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/nord.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/oceanic-next.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/panda-syntax.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/paraiso-dark.css</Path>
@@ -8117,7 +3599,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/xq-dark.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/xq-light.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/yeti.css</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/yonce.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/theme/zenburn.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/coffee-script/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/coffee-script/README.md</Path>
@@ -8142,44 +3623,31 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/coffee-script/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/coffee-script/register.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/coffee-script/repl.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/component.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/conversions.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/test/basic.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/test/speed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/route.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/examples/normal-usage.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/examples/safe-string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/index.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/colors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/custom/trap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/custom/zalgo.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/extendStringPrototype.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/maps/america.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/maps/rainbow.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/maps/random.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/maps/zebra.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/styles.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/system/has-flag.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/lib/system/supports-colors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/safe.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/safe.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/themes/generic-logging.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/combined-stream/License</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/combined-stream/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/combined-stream/lib/combined_stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/combined-stream/lib/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/combined-stream/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/Readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/typings/index.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-map/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-map/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-map/README.markdown</Path>
@@ -8195,9 +3663,51 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/conf/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/conf/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/conf/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/ACKNOWLEDGE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/CODE_OF_CONDUCT.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/FAQ.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/ConnectedRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/actions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/immutable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/middleware.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/reducer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/seamless-immutable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/selectors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/structure/immutable/getIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/structure/immutable/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/structure/plain/getIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/structure/plain/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/esm/structure/seamless-immutable/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/immutable.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/immutable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/ConnectedRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/actions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/createAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/immutable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/middleware.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/reducer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/seamless-immutable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/selectors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/structure/immutable/getIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/structure/immutable/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/structure/plain/getIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/structure/plain/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/lib/structure/seamless-immutable/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/seamless-immutable.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/seamless-immutable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/umd/ConnectedReactRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/umd/ConnectedReactRouter.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/connected-react-router/webpack.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/Gruntfile.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/bower.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/build/Gruntfile.ls</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/build/build.ls</Path>
@@ -8217,33 +3727,47 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/core/dict.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/core/function.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/core/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/core/log.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/core/number.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/core/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/core/regexp.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/core/string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es5/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/date.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/function.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/map.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/math.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/number.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/parse-int.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/promise.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/reflect.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/regexp.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/typed.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/weak-map.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es6/weak-set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/asap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/global.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/math.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/observable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/reflect.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/system.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/es7/weak-set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/_.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/concat.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/copy-within.js</Path>
@@ -8253,11 +3777,14 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/filter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/find-index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/flat-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/flatten.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/for-each.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/from.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/includes.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/index-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/is-array.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/iterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/join.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/keys.js</Path>
@@ -8276,41 +3803,93 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/splice.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/unshift.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/find-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/flat-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/flatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/for-each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/last-index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/reduce-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/array/virtual/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/asap.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/clear-immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/date/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/date/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/date/to-iso-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/date/to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/date/to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/date/to-string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/delay.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/dom-collections/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/dom-collections/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/error/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/error/is-error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/function/bind.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/function/has-instance.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/function/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/function/name.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/function/part.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/function/virtual/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/function/virtual/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/function/virtual/part.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/get-iterator-method.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/get-iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/html-collection/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/html-collection/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/global.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/is-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/json/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/json/stringify.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/log.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/map/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/map/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/map/of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/acosh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/asinh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/atanh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/cbrt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/clamp.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/clz32.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/cosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/deg-per-rad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/degrees.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/expm1.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/fscale.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/hypot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/iaddh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/imul.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/imulh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/isubh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/log10.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/log1p.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/log2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/rad-per-deg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/radians.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/scale.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/signbit.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/sinh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/tanh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/trunc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/node-list/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/node-list/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/math/umulh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/constructor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/epsilon.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/is-finite.js</Path>
@@ -8322,11 +3901,19 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/min-safe-integer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/parse-float.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/to-fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/to-precision.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/virtual/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/virtual/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/virtual/to-fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/number/virtual/to-precision.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/assign.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/classof.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/define-getter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/define-properties.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/define-setter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/define.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/entries.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/freeze.js</Path>
@@ -8342,50 +3929,125 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/is-sealed.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/is.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/lookup-getter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/lookup-setter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/make.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/prevent-extensions.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/seal.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/set-prototype-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/object/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/observable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/parse-int.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/promise/finally.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/promise/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/promise/try.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/apply.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/define-metadata.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/delete-metadata.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/delete-property.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/get-metadata-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/get-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/get-own-metadata-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/get-own-metadata.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/get-own-property-descriptor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/get-prototype-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/has-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/has-own-metadata.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/has.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/metadata.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/own-keys.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/prevent-extensions.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/set-prototype-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/reflect/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/regexp/constructor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/regexp/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/regexp/flags.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/regexp/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/regexp/match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/regexp/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/regexp/search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/regexp/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/regexp/to-string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/set-immediate.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/set-interval.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/set-timeout.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/set/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/set/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/set/of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/anchor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/big.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/blink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/bold.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/code-point-at.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/ends-with.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/fontcolor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/fontsize.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/from-code-point.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/includes.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/italics.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/pad-left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/match-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/pad-end.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/pad-start.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/raw.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/small.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/strike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/sub.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/sup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/trim-end.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/trim-left.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/trim-start.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/trim.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/anchor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/big.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/blink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/bold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/code-point-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/fontcolor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/fontsize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/italics.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/match-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/pad-end.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/pad-start.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/small.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/strike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/sub.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/sup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/trim-end.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/trim-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/trim-start.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/string/virtual/unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/async-iterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/for.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/has-instance.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/index.js</Path>
@@ -8393,6 +4055,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/iterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/key-for.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/observable.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/replace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/search.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/species.js</Path>
@@ -8400,43 +4063,75 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/to-primitive.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/to-string-tag.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/symbol/unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/system/global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/system/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/array-buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/data-view.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/float32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/float64-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/int16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/int32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/int8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/uint16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/uint32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/uint8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/typed/uint8-clamped-array.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/weak-map/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/weak-map/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/weak-map/of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/weak-set/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/weak-set/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/fn/weak-set/of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/js/array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/js/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/core/_.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/core/delay.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/core/dict.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/core/function.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/core/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/core/log.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/core/number.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/core/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/core/regexp.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/core/string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es5/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/date.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/function.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/map.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/math.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/number.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/parse-int.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/promise.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/reflect.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/regexp.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/typed.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/weak-map.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es6/weak-set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/asap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/global.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/math.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/observable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/reflect.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/system.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/es7/weak-set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/_.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/concat.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/copy-within.js</Path>
@@ -8446,11 +4141,14 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/filter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/find-index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/flat-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/flatten.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/for-each.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/from.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/includes.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/index-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/is-array.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/iterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/join.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/keys.js</Path>
@@ -8469,41 +4167,93 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/splice.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/unshift.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/find-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/flat-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/flatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/for-each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/last-index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/reduce-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/array/virtual/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/asap.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/clear-immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/date/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/date/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/date/to-iso-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/date/to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/date/to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/date/to-string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/delay.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/dom-collections/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/dom-collections/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/error/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/error/is-error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/function/bind.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/function/has-instance.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/function/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/function/name.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/function/part.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/function/virtual/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/function/virtual/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/function/virtual/part.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/get-iterator-method.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/get-iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/html-collection/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/html-collection/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/global.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/is-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/json/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/json/stringify.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/log.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/map/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/map/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/map/of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/acosh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/asinh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/atanh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/cbrt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/clamp.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/clz32.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/cosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/deg-per-rad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/degrees.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/expm1.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/fscale.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/hypot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/iaddh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/imul.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/imulh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/isubh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/log10.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/log1p.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/log2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/rad-per-deg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/radians.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/scale.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/signbit.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/sinh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/tanh.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/trunc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/node-list/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/node-list/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/math/umulh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/constructor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/epsilon.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/is-finite.js</Path>
@@ -8515,11 +4265,19 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/min-safe-integer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/parse-float.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/to-fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/to-precision.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/virtual/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/virtual/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/virtual/to-fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/number/virtual/to-precision.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/assign.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/classof.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/define-getter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/define-properties.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/define-setter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/define.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/entries.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/freeze.js</Path>
@@ -8535,50 +4293,125 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/is-sealed.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/is.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/lookup-getter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/lookup-setter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/make.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/prevent-extensions.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/seal.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/set-prototype-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/object/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/observable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/parse-int.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/promise/finally.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/promise/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/promise/try.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/apply.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/define-metadata.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/delete-metadata.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/delete-property.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/get-metadata-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/get-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/get-own-metadata-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/get-own-metadata.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/get-own-property-descriptor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/get-prototype-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/has-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/has-own-metadata.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/has.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/metadata.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/own-keys.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/prevent-extensions.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/set-prototype-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/reflect/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/regexp/constructor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/regexp/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/regexp/flags.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/regexp/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/regexp/match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/regexp/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/regexp/search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/regexp/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/regexp/to-string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/set-immediate.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/set-interval.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/set-timeout.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/set/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/set/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/set/of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/anchor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/big.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/blink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/bold.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/code-point-at.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/ends-with.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/fontcolor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/fontsize.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/from-code-point.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/includes.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/italics.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/pad-left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/match-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/pad-end.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/pad-start.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/raw.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/small.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/strike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/sub.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/sup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/trim-end.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/trim-left.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/trim-start.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/trim.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/anchor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/big.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/blink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/bold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/code-point-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/fontcolor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/fontsize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/italics.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/match-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/pad-end.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/pad-start.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/small.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/strike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/sub.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/sup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/trim-end.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/trim-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/trim-start.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/string/virtual/unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/async-iterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/for.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/has-instance.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/index.js</Path>
@@ -8586,6 +4419,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/iterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/key-for.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/observable.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/replace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/search.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/species.js</Path>
@@ -8593,121 +4427,200 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/to-primitive.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/to-string-tag.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/symbol/unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/system/global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/system/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/array-buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/data-view.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/float32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/float64-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/int16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/int32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/int8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/uint16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/uint32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/uint8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/typed/uint8-clamped-array.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/weak-map/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/weak-map/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/weak-map/of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/weak-set/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/weak-set/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/fn/weak-set/of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/js/array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/js/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.a-function.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.add-to-unscopables.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.an-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.array-copy-within.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.array-fill.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.array-includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.array-methods.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.array-species-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.buffer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.classof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.cof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.collection-strong.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.collection-to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.collection-weak.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.collection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.core.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.ctx.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.defined.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.descriptors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.dom-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.enum-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.export.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.fails-is-regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.fails.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.fix-re-wks.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.flags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.for-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.get-names.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.has.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.hide.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.invoke.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.iobject.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.is-array-iter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.is-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.is-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.is-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.is-regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.iter-call.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.iter-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.iter-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.iter-detect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.iter-step.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.iterators.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.keyof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.library.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.math-expm1.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.math-log1p.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.math-sign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.microtask.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.object-assign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.object-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.object-sap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.object-to-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.own-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.partial.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.path.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.property-desc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.redefine-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.redefine.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.replacer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.same-value.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.set-proto.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.set-species.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.set-to-string-tag.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.shared.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.species-constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.strict-new.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.string-at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.string-context.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.string-pad.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.string-repeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.string-trim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.task.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.to-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.to-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.to-iobject.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.to-length.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.to-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.typed-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.typed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.uid.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/$.wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_a-function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_a-number-value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_an-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_an-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_array-copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_array-fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_array-from-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_array-includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_array-methods.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_array-reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_array-species-constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_array-species-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_cof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_collection-strong.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_collection-to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_collection-weak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_create-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_ctx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_date-to-iso-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_date-to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_defined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_dom-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_entry-virtual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_enum-bug-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_enum-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_export.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_fails-is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_fails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_fix-re-wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_flatten-into-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_for-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_hide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_ie8-dom-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_inherit-if-required.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_is-array-iter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_is-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_iter-call.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_iter-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_iter-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_iter-detect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_iter-step.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_iterators.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_keyof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_math-expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_math-fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_math-log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_math-scale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_math-sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_meta.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_microtask.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_new-promise-capability.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-dp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-dps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-forced-pam.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-gopd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-gopn-ext.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-gopn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-gops.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-gpo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-keys-internal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-pie.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-sap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_object-to-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_perform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_promise-resolve.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_property-desc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_redefine-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_replacer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_same-value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_set-collection-from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_set-collection-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_set-proto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_set-species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_set-to-string-tag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_shared-key.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_shared.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_species-constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_strict-method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_string-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_string-context.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_string-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_string-pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_string-repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_string-trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_string-ws.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_task.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_to-absolute-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_to-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_to-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_to-iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_to-length.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_to-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_typed-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_typed-buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_typed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_uid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_user-agent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_validate-collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_wks-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_wks-ext.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/_wks.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.delay.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.dict.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.function.part.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.get-iterator-method.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.get-iterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.is-iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.log.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.number.iterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.object.classof.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.object.define.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.object.is-object.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.object.make.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.regexp.escape.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.string.escape-html.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/core.string.unescape-html.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es5.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.every.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.filter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.find-index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.for-each.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.is-array.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.last-index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.map.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.reduce-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.sort.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.array.species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.date.now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.date.to-iso-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.date.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.date.to-primitive.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.date.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.function.bind.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.function.has-instance.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.function.name.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.map.js</Path>
@@ -8738,7 +4651,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.number.min-safe-integer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.number.parse-float.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.number.parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.number.to-fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.number.to-precision.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.object.assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.object.create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.object.define-properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.object.define-property.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.object.freeze.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.object.get-own-property-descriptor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.object.get-own-property-names.js</Path>
@@ -8752,6 +4670,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.object.seal.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.object.set-prototype-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.object.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.parse-int.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.promise.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.reflect.apply.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.reflect.construct.js</Path>
@@ -8773,15 +4693,29 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.regexp.replace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.regexp.search.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.regexp.split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.regexp.to-string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.anchor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.big.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.blink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.bold.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.code-point-at.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.fontcolor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.fontsize.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.from-code-point.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.italics.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.link.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.raw.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.small.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.strike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.sub.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.sup.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.string.trim.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.symbol.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.typed.array-buffer.js</Path>
@@ -8797,137 +4731,248 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.typed.uint8-clamped-array.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.weak-map.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es6.weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.array.flat-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.array.flatten.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.array.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.asap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.error.is-error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.map.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.map.of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.map.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.clamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.deg-per-rad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.degrees.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.fscale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.iaddh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.imulh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.isubh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.rad-per-deg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.radians.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.scale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.signbit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.math.umulh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.object.define-getter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.object.define-setter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.object.entries.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.object.get-own-property-descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.object.lookup-getter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.object.lookup-setter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.object.values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.regexp.escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.observable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.promise.finally.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.promise.try.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.reflect.define-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.reflect.delete-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.reflect.get-metadata-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.reflect.get-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.reflect.get-own-metadata-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.reflect.get-own-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.reflect.has-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.reflect.has-own-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.reflect.metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.set.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.set.of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.set.to-json.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.string.at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.string.pad-left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.string.pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.string.match-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.string.pad-end.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.string.pad-start.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.string.trim-left.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.string.trim-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/js.array.statics.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.symbol.async-iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.symbol.observable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.system.global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.weak-map.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.weak-map.of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.weak-set.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/es7.weak-set.of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/web.dom.iterable.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/web.immediate.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/modules/web.timers.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/shim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/web/dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/stage/0.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/stage/1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/stage/2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/stage/3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/stage/4.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/stage/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/stage/pre.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/web/dom-collections.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/web/immediate.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/web/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/library/web/timers.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.a-function.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.add-to-unscopables.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.an-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.array-copy-within.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.array-fill.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.array-includes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.array-methods.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.array-species-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.buffer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.classof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.cof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.collection-strong.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.collection-to-json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.collection-weak.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.collection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.core.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.ctx.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.defined.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.descriptors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.dom-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.enum-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.export.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.fails-is-regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.fails.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.fix-re-wks.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.flags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.for-of.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.get-names.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.global.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.has.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.hide.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.html.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.invoke.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.iobject.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.is-array-iter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.is-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.is-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.is-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.is-regexp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.iter-call.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.iter-create.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.iter-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.iter-detect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.iter-step.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.iterators.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.keyof.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.library.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.math-expm1.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.math-log1p.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.math-sign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.microtask.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.object-assign.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.object-define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.object-sap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.object-to-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.own-keys.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.partial.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.path.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.property-desc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.redefine-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.redefine.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.replacer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.same-value.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.set-proto.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.set-species.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.set-to-string-tag.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.shared.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.species-constructor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.strict-new.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.string-at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.string-context.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.string-pad.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.string-repeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.string-trim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.task.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.to-index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.to-integer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.to-iobject.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.to-length.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.to-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.to-primitive.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.typed-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.typed.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.uid.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/$.wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_a-function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_a-number-value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_an-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_an-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_array-copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_array-fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_array-from-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_array-includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_array-methods.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_array-reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_array-species-constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_array-species-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_cof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_collection-strong.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_collection-to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_collection-weak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_create-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_ctx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_date-to-iso-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_date-to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_defined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_dom-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_entry-virtual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_enum-bug-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_enum-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_export.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_fails-is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_fails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_fix-re-wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_flatten-into-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_for-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_hide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_ie8-dom-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_inherit-if-required.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_is-array-iter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_is-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_iter-call.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_iter-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_iter-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_iter-detect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_iter-step.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_iterators.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_keyof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_math-expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_math-fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_math-log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_math-scale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_math-sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_meta.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_microtask.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_new-promise-capability.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-dp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-dps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-forced-pam.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-gopd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-gopn-ext.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-gopn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-gops.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-gpo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-keys-internal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-pie.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-sap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_object-to-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_perform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_promise-resolve.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_property-desc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_redefine-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_replacer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_same-value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_set-collection-from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_set-collection-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_set-proto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_set-species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_set-to-string-tag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_shared-key.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_shared.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_species-constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_strict-method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_string-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_string-context.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_string-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_string-pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_string-repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_string-trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_string-ws.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_task.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_to-absolute-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_to-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_to-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_to-iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_to-length.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_to-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_typed-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_typed-buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_typed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_uid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_user-agent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_validate-collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_wks-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_wks-ext.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/_wks.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.delay.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.dict.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.function.part.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.get-iterator-method.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.get-iterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.is-iterable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.log.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.number.iterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.object.classof.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.object.define.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.object.is-object.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.object.make.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.regexp.escape.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.string.escape-html.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/core.string.unescape-html.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es5.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.every.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.filter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.find-index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.for-each.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.is-array.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.last-index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.map.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.reduce-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.sort.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.array.species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.date.now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.date.to-iso-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.date.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.date.to-primitive.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.date.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.function.bind.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.function.has-instance.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.function.name.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.map.js</Path>
@@ -8958,7 +5003,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.number.min-safe-integer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.number.parse-float.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.number.parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.number.to-fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.number.to-precision.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.object.assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.object.create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.object.define-properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.object.define-property.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.object.freeze.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.object.get-own-property-descriptor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.object.get-own-property-names.js</Path>
@@ -8972,6 +5022,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.object.seal.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.object.set-prototype-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.object.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.parse-int.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.promise.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.reflect.apply.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.reflect.construct.js</Path>
@@ -8993,15 +5045,29 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.regexp.replace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.regexp.search.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.regexp.split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.regexp.to-string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.anchor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.big.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.blink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.bold.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.code-point-at.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.fixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.fontcolor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.fontsize.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.from-code-point.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.italics.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.link.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.raw.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.small.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.strike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.sub.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.sup.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.string.trim.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.symbol.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.typed.array-buffer.js</Path>
@@ -9017,26 +5083,72 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.typed.uint8-clamped-array.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.weak-map.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es6.weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.array.flat-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.array.flatten.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.array.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.asap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.error.is-error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.map.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.map.of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.map.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.clamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.deg-per-rad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.degrees.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.fscale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.iaddh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.imulh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.isubh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.rad-per-deg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.radians.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.scale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.signbit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.math.umulh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.object.define-getter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.object.define-setter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.object.entries.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.object.get-own-property-descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.object.lookup-getter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.object.lookup-setter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.object.values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.regexp.escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.observable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.promise.finally.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.promise.try.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.reflect.define-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.reflect.delete-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.reflect.get-metadata-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.reflect.get-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.reflect.get-own-metadata-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.reflect.get-own-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.reflect.has-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.reflect.has-own-metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.reflect.metadata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.set.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.set.of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.set.to-json.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.string.at.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.string.pad-left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.string.pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.string.match-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.string.pad-end.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.string.pad-start.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.string.trim-left.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.string.trim-right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/js.array.statics.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/$.add-to-unscopables.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/$.collection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/$.export.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/$.library.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/$.path.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/$.redefine.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/$.set-species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.symbol.async-iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.symbol.observable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.system.global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.weak-map.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.weak-map.of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.weak-set.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/es7.weak-set.of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/_add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/_collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/_export.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/_library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/_path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/_redefine-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/_redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/_set-species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/es6.date.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/es6.date.to-primitive.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/es6.date.to-string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/es6.function.name.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/es6.number.constructor.js</Path>
@@ -9047,13 +5159,21 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/es6.regexp.replace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/es6.regexp.search.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/es6.regexp.split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/es6.regexp.to-string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/library/web.dom.iterable.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/web.dom.iterable.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/web.immediate.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/modules/web.timers.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/shim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/web/dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/stage/0.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/stage/1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/stage/2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/stage/3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/stage/4.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/stage/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/stage/pre.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/web/dom-collections.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/web/immediate.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/web/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/web/timers.js</Path>
@@ -9073,14 +5193,42 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/create-react-class/create-react-class.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/create-react-class/factory.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/create-react-class/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/create-react-class/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/create-react-class/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/crypto-random-string/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/crypto-random-string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/crypto-random-string/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/crypto-random-string/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/crypto-random-string/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/lib/cson-parser.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/lib/parse.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/lib/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/bin/css-b64-images</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/draft.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/draft.xcf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/lib/css-b64-images.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/css-b64-images-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/css/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/fonts/callunasansregular-webfont.eot</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/fonts/callunasansregular-webfont.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/fonts/callunasansregular-webfont.ttf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/fonts/callunasansregular-webfont.woff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/fonts/maven_pro_medium-webfont.eot</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/fonts/maven_pro_medium-webfont.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/fonts/maven_pro_medium-webfont.ttf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/fonts/maven_pro_medium-webfont.woff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/img/background-pattern.gif</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/img/dots.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/css-b64-images/test/fixture/img/mixit-banner.png</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/LICENSE.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/README.mdown</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSDocumentRule.js</Path>
@@ -9095,7 +5243,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSStyleDeclaration.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSStyleRule.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSStyleSheet.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSSupportsRule.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSValue.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSValueExpression.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/MatcherList.js</Path>
@@ -9107,111 +5254,68 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/parse.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/snapshot.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/.eslintignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/.eslintrc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/MIT-LICENSE.txt</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/CSSStyleDeclaration.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/allExtraProperties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/allProperties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/constants.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/implementedProperties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/named_colors.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/parsers.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/azimuth.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/background.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundAttachment.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundImage.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundPosition.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundRepeat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/border.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderBottom.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderBottomColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderBottomStyle.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderBottomWidth.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderCollapse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderLeft.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderLeftColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderLeftStyle.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderLeftWidth.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderRight.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderRightColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderRightStyle.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderRightWidth.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderSpacing.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderStyle.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderTop.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderTopColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderTopStyle.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderTopWidth.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderWidth.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/bottom.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/clear.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/clip.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/color.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/cssFloat.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/flex.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/flexBasis.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/flexGrow.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/flexShrink.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/float.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/floodColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/font.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontFamily.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontSize.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontStyle.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontVariant.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontWeight.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/height.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/left.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/lightingColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/lineHeight.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/margin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/marginBottom.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/marginLeft.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/marginRight.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/marginTop.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/opacity.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/outlineColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/padding.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/paddingBottom.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/paddingLeft.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/paddingRight.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/paddingTop.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/right.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/stopColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textLineThroughColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textOverlineColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textUnderlineColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/top.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderStartColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMatchNearestMailBlockquoteColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextFillColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/width.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/scripts/download_latest_properties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/scripts/generate_implemented_properties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/scripts/generate_properties.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/tests/tests.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/History.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/build.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/build/uint32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/build/uint32.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/build/uint64.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/build/uint64.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/examples/adding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/examples/dividing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/examples/uint32.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/lib/uint32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/lib/uint64.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_add-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_and-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_div-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_equals-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_greaterThan-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_lessThan-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_multiply-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_negate-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_not-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_or-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_rotateLeft-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_rotateRight-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_shiftLeft-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_shiftRight-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_subtract-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_toNumber-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_toString-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT32_xor-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_add-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_and-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_div-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_equals-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_greaterThan-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_lessThan-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_multiply-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_negate-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_not-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_or-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_rotateLeft-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_rotateRight-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_shiftLeft-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_shiftRight-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_subtract-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_toNumber-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_toString-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cuint/test/UINT64_xor-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/dist/d3-array.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/dist/d3-array.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/build/d3-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/build/d3-array.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/img/histogram.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/array.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/ascending.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/bisect.js</Path>
@@ -9223,7 +5327,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/extent.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/histogram.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/identity.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/max.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/mean.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/median.js</Path>
@@ -9244,7 +5347,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/transpose.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/variance.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/zip.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/README.md</Path>
@@ -9257,19 +5359,16 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/src/identity.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/dist/d3-brush.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/dist/d3-brush.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/src/brush.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/src/constant.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/src/event.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/src/noevent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/README.md</Path>
@@ -9284,41 +5383,77 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/src/math.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/src/ribbon.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/dist/d3-collection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/dist/d3-collection.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/build/d3-collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/build/d3-collection.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/entries.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/keys.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/map.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/nest.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/values.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/yarn-error.log</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/dist/d3-color.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/dist/d3-color.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/build/d3-color.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/build/d3-color.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/color.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/cubehelix.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/define.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/lab.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/math.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/dist/d3-contour.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/dist/d3-contour.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/dist/d3-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/dist/d3-array.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/ascending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/bisect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/bisector.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/cross.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/descending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/deviation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/extent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/histogram.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/mean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/median.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/pairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/permute.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/quantile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/scan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/shuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/threshold/freedmanDiaconis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/threshold/scott.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/threshold/sturges.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/ticks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/transpose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/variance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/src/zip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/node_modules/d3-array/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/area.js</Path>
@@ -9332,70 +5467,107 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/noop.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/dist/d3-dispatch.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/dist/d3-dispatch.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/build/d3-dispatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/build/d3-dispatch.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/src/dispatch.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/src/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/dist/d3-drag.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/dist/d3-drag.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/build/d3-drag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/build/d3-drag.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/canvas.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/dots.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/drawing.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/force-collide.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/force-graph.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/voronoi.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/constant.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/drag.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/event.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/nodrag.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/noevent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/bin/dsv2dsv</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/bin/dsv2json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/bin/json2dsv</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/dist/d3-dsv.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/dist/d3-dsv.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/build/d3-dsv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/build/d3-dsv.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/node_modules/commander/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/node_modules/commander/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/node_modules/commander/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/node_modules/commander/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/node_modules/commander/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/node_modules/commander/typings/index.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/rollup.config.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/src/autoType.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/src/csv.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/src/dsv.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/src/tsv.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/dist/d3-ease.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/dist/d3-ease.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/build/d3-ease.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/build/d3-ease.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/backIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/backInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/backOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/bounceIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/bounceInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/bounceOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/circleIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/circleInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/circleOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/cubicIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/cubicInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/cubicOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/elasticIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/elasticInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/elasticOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/expIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/expInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/expOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/linear.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/polyIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/polyInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/polyOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/quadIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/quadInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/quadOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/sinIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/sinInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/sinOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/back.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/bounce.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/circle.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/cubic.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/elastic.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/exp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/linear.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/poly.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/quad.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/sin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/dist/d3-fetch.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/dist/d3-fetch.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/src/blob.js</Path>
@@ -9426,11 +5598,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/x.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/y.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/dist/d3-format.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/dist/d3-format.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/build/d3-format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/build/d3-format.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-001.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-AE.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-BH.json</Path>
@@ -9486,7 +5659,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/uk-UA.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/zh-CN.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/defaultLocale.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/exponent.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatDecimal.js</Path>
@@ -9498,19 +5670,15 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatTrim.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatTypes.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/identity.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/locale.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/precisionFixed.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/precisionPrefix.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/precisionRound.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/dist/d3-geo.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/dist/d3-geo.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/adder.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/area.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/bounds.js</Path>
@@ -9570,7 +5738,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/rotation.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/stream.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/transform.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/README.md</Path>
@@ -9610,13 +5777,24 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/treemap/sliceDice.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/treemap/squarify.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/dist/d3-interpolate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/dist/d3-interpolate.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/build/d3-interpolate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/build/d3-interpolate.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/cubehelix.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/cubehelixGamma.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/cubehelixGammaLong.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/cubehelixLong.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/hcl.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/hclLong.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/hsl.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/hslLong.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/lab.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/rgb.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/rgbGamma.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/array.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/basis.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/basisClosed.js</Path>
@@ -9624,11 +5802,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/constant.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/cubehelix.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/date.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/discrete.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/hcl.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/hsl.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/hue.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/lab.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/number.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/object.js</Path>
@@ -9642,17 +5817,15 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/transform/parse.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/value.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/zoom.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/dist/d3-path.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/dist/d3-path.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/build/d3-path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/build/d3-path.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/rollup.config.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/src/path.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/README.md</Path>
@@ -9668,19 +5841,19 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/src/length.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/dist/d3-quadtree.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/dist/d3-quadtree.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/build/d3-quadtree.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/build/d3-quadtree.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/add.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/cover.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/data.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/extent.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/find.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/quad.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/quadtree.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/remove.js</Path>
@@ -9690,7 +5863,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/visitAfter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/x.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/y.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/README.md</Path>
@@ -9707,13 +5879,11 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/src/normal.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/src/uniform.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/dist/d3-scale-chromatic.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/dist/d3-scale-chromatic.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Accent.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Dark2.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Paired.js</Path>
@@ -9722,6 +5892,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Set1.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Set2.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Set3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Tableau10.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/category10.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/colors.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/diverging/BrBG.js</Path>
@@ -9749,9 +5920,11 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/YlGnBu.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/YlOrBr.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/YlOrRd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/cividis.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/cubehelix.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/rainbow.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/sinebow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/turbo.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/viridis.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Blues.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Greens.js</Path>
@@ -9759,7 +5932,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Oranges.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Purples.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Reds.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/README.md</Path>
@@ -9792,18 +5964,17 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/time.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/utcTime.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/dist/d3-selection.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/dist/d3-selection.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/rollup.config.js</Path>
<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>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/mouse.js</Path>
@@ -9828,7 +5999,6 @@
<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>
@@ -9851,7 +6021,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/touch.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/touches.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/window.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/README.md</Path>
@@ -9912,12 +6081,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/symbol/triangle.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/symbol/wye.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/dist/d3-time-format.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/dist/d3-time-format.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/ar-EG.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/build/d3-time-format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/build/d3-time-format.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/ca-ES.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/cs-CZ.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/da-DK.json</Path>
@@ -9937,7 +6106,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/ja-JP.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/ko-KR.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/mk-MK.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/nb-NO.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/nl-NL.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/pl-PL.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/pt-BR.json</Path>
@@ -9949,22 +6117,19 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/src/defaultLocale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/src/isoFormat.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/src/isoParse.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/src/locale.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/dist/d3-time.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/dist/d3-time.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/build/d3-time.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/build/d3-time.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/day.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/duration.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/hour.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/interval.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/millisecond.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/minute.js</Path>
@@ -9978,28 +6143,26 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/utcYear.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/week.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/year.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/dist/d3-timer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/dist/d3-timer.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/build/d3-timer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/build/d3-timer.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/rollup.config.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/src/interval.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/src/timeout.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/src/timer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/dist/d3-transition.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/dist/d3-transition.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/build/d3-transition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/build/d3-transition.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/active.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/interrupt.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/selection/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/selection/interrupt.js</Path>
@@ -10009,7 +6172,6 @@
<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>
@@ -10025,7 +6187,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/text.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/transition.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/tween.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/README.md</Path>
@@ -10044,23 +6205,18 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/point.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/voronoi.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/dist/d3-zoom.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/dist/d3-zoom.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/rollup.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/constant.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/event.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/noevent.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/transform.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/zoom.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/API.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/CHANGES.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/ISSUE_TEMPLATE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/dist/d3.js</Path>
@@ -10068,129 +6224,1207 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/dist/d3.node.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/dist/package.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/rollup.config.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/rollup.node.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/.ackrc</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/.editorconfig</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/dagre-d3.core.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/dagre-d3.core.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/dagre-d3.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/dagre-d3.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/arrows.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/clusters.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/demo.css</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/demo.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/dom.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/etl-status.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/graph-story-board.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/graphlib-dot.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/hover.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/interactive-demo.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/jquery-1.9.1.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/sentence-tokenization.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/shapes.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/style-attrs.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/svg-labels.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/tcp-state-diagram.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/test.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/tipsy.css</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/tipsy.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/user-defined.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/karma.conf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/arrows.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/create-clusters.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/create-edge-labels.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/create-edge-paths.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/create-nodes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-circle.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-ellipse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-line.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-node.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-polygon.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-rect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/label/add-html-label.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/label/add-label.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/label/add-svg-label.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/label/add-text-label.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/position-clusters.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/position-edge-labels.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/position-nodes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/render.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/shapes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/util.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/todo.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/webpack.config.babel.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/yarn-error.log</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/dist/dagre-layout.core.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/dist/dagre-layout.core.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/dist/dagre-layout.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/dist/dagre-layout.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/acyclic.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/add-border-segments.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/coordinate-system.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/data/list.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/debug.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/greedy-fas.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/layout.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/nesting-graph.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/normalize.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/add-subgraph-constraints.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/barycenter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/build-layer-graph.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/cross-count.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/init-order.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/resolve-conflicts.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/sort-subgraph.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/sort.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/parent-dummy-chains.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/position/bk.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/position/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/rank/feasible-tree.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/rank/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/rank/network-simplex.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/rank/util.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/util.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/arrows.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/clusters.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/demo.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/demo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/dom.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/etl-status.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/graph-story-board.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/hover.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/interactive-demo.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/sentence-tokenization.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/shapes.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/style-attrs.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/svg-labels.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/tcp-state-diagram.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/tipsy.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/tipsy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/demo/user-defined.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/dist/dagre-d3.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/dist/dagre-d3.core.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/dist/dagre-d3.core.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/dist/dagre-d3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/dist/dagre-d3.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/dist/dagre-d3.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/karma.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/karma.core.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/arrows.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/create-clusters.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/create-edge-labels.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/create-edge-paths.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/create-nodes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/d3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/dagre.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/graphlib.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/intersect/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/intersect/intersect-circle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/intersect/intersect-ellipse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/intersect/intersect-line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/intersect/intersect-node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/intersect/intersect-polygon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/intersect/intersect-rect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/label/add-html-label.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/label/add-label.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/label/add-svg-label.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/label/add-text-label.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/lodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/position-clusters.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/position-edge-labels.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/position-nodes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/render.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/shapes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/lib/version.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_DataView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_Hash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_LazyWrapper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_ListCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_LodashWrapper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_Map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_MapCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_Promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_Set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_SetCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_Stack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_Symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_Uint8Array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_WeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayFilter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayIncludes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayIncludesWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayLikeKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayPush.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayReduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayReduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arraySample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arraySampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arrayShuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_arraySome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_asciiSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_asciiToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_asciiWords.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_assignMergeValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_assignValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_assocIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseAssign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseAssignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseAssignValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseClamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseConforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseConformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseCreate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseDelay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseDifference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseExtremum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseFill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseFilter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseFindIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseFindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseFlatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseFor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseForOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseForOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseForRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseFunctions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseGetAllKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseGetTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseGt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseHasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseInRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIndexOfWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIntersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseInverter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseInvoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsEqualDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIsTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseIteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseLt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseMatches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseMatchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseMean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseMerge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseMergeDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseNth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseOrderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_basePick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_basePickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_basePropertyDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_basePropertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_basePullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_basePullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseRandom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseReduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSetData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSetToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseShuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseSum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseTimes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseToNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseUnary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseUnset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseUpdate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseWrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseXor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_baseZipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_cacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_castArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_castFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_castPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_castRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_castSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_charsEndIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_charsStartIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_cloneArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_cloneBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_cloneDataView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_cloneRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_cloneSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_cloneTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_compareAscending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_compareMultiple.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_composeArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_composeArgsRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_copyArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_copyObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_copySymbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_copySymbolsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_coreJsData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_countHolders.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createAssigner.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createBaseEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createBaseFor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createBind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createCaseFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createCompounder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createCtor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createCurry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createFind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createFlow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createHybrid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createInverter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createMathOperation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createOver.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createPadding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createPartial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createRecurry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createRelationalOperation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createRound.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_createWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_customDefaultsAssignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_customDefaultsMerge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_customOmitClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_deburrLetter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_defineProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_equalArrays.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_equalByTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_equalObjects.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_escapeHtmlChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_escapeStringChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_flatRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_freeGlobal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getAllKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getAllKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getFuncName.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getHolder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getMapData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getMatchData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getPrototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getRawTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getSymbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getSymbolsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_getWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_hasPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_hasUnicode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_hasUnicodeWord.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_hashClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_hashDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_hashGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_hashHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_hashSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_initCloneArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_initCloneByTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_initCloneObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_insertWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_isFlattenable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_isIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_isIterateeCall.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_isKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_isKeyable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_isLaziable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_isMaskable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_isMasked.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_isPrototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_isStrictComparable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_iteratorToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_lazyClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_lazyReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_lazyValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_listCacheClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_listCacheDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_listCacheGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_listCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_listCacheSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_mapCacheClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_mapCacheDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_mapCacheGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_mapCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_mapCacheSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_mapToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_matchesStrictComparable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_memoizeCapped.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_mergeData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_metaMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_nativeCreate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_nativeKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_nativeKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_nodeUtil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_objectToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_overArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_overRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_parent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_reEscape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_reEvaluate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_reInterpolate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_realNames.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_reorder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_replaceHolders.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_root.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_safeGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_setCacheAdd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_setCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_setData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_setToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_setToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_setToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_setWrapToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_shortOut.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_shuffleSelf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_stackClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_stackDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_stackGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_stackHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_stackSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_strictIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_strictLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_stringSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_stringToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_stringToPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_toKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_toSource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_unescapeHtmlChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_unicodeSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_unicodeToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_unicodeWords.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_updateWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/_wrapperClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/add.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/after.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/ary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/assignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/assignInWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/assignWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/attempt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/before.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/bindAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/bindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/camelCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/capitalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/castArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/ceil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/chain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/chunk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/clamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/cloneDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/cloneDeepWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/cloneWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/commit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/compact.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/cond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/conforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/conformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/core.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/countBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/curry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/curryRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/date.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/debounce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/deburr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/defaultTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/defaultsDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/difference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/differenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/differenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/divide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/drop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/dropRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/dropRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/dropWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/eachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/endsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/entriesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/eq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/escapeRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/extend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/extendWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/findIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/findKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/findLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/findLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/findLastKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/first.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/flatMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/flatMapDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/flatMapDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/flatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/flattenDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/flattenDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/flip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/floor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/flow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/flowRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/forEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/forEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/forIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/forInRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/forOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/forOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/F.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/T.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/__.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/_baseConvert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/_convertBrowser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/_falseOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/_mapping.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/_util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/add.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/after.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/allPass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/always.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/any.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/anyPass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/ary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/assignAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/assignAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/assignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/assignInAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/assignInAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/assignInWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/assignWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/assoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/assocPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/attempt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/before.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/bindAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/bindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/camelCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/capitalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/castArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/ceil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/chain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/chunk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/clamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/cloneDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/cloneDeepWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/cloneWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/commit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/compact.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/complement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/compose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/cond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/conforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/conformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/contains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/convert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/countBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/curry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/curryN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/curryRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/curryRightN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/date.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/debounce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/deburr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/defaultTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/defaultsAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/defaultsDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/defaultsDeepAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/difference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/differenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/differenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/dissoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/dissocPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/divide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/drop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/dropLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/dropLastWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/dropRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/dropRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/dropWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/eachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/endsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/entriesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/eq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/equals.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/escapeRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/extend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/extendAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/extendAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/extendWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/findFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/findIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/findIndexFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/findKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/findLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/findLastFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/findLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/findLastIndexFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/findLastKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/first.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/flatMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/flatMapDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/flatMapDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/flatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/flattenDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/flattenDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/flip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/floor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/flow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/flowRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/forEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/forEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/forIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/forInRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/forOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/forOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/fromPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/functions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/functionsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/getOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/groupBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/gt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/gte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/hasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/head.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/identical.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/inRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/includesFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/indexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/indexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/indexOfFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/init.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/initial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/intersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/intersectionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/intersectionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/invertBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/invertObj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/invokeArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/invokeArgsMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/invokeMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isArrayLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isBoolean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isEqualWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isMatchWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isNil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isNull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isObjectLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isUndefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isWeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/isWeakSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/iteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/juxt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/kebabCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/keyBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/keysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/lang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/last.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/lastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/lastIndexOfFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/lowerCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/lowerFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/lt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/lte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/mapKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/mapValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/matches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/matchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/maxBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/mean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/meanBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/memoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/mergeAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/mergeAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/mergeWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/methodOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/minBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/multiply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/nAry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/negate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/next.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/nth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/nthArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/omit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/omitAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/omitBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/orderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/over.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/overArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/overEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/overSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/padChars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/padCharsEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/padCharsStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/padEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/padStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/parseInt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/partialRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/partition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pathEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pathOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/paths.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pickAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pipe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/placeholder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/plant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pluck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/prop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/propEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/propOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/propertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/props.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pullAllBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pullAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/pullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/rangeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/rangeStep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/rangeStepRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/rearg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/reduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/rest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/restFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/result.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/setWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/shuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/snakeCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sortedIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sortedLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sortedLastIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sortedLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sortedUniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/spread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/spreadFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/startCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/startsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/stubArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/stubFalse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/stubObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/stubString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/stubTrue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/subtract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/sumBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/symmetricDifference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/symmetricDifferenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/symmetricDifferenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/tail.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/take.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/takeLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/takeLastWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/takeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/takeRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/takeWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/tap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/template.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/templateSettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/throttle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/thru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toJSON.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toLower.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toPairsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/toUpper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/trimChars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/trimCharsEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/trimCharsStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/trimEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/trimStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/truncate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/unapply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/unary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/unescape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/union.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/unionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/unionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/uniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/uniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/uniqWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/uniqueId.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/unnest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/unset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/unzip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/unzipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/update.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/updateWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/upperCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/upperFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/useWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/valueOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/valuesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/where.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/whereEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/without.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/words.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/wrapperAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/wrapperChain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/wrapperLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/wrapperReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/wrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/xor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/xorBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/xorWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/zip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/zipAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/zipObj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/zipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/zipObjectDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fp/zipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/fromPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/functions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/functionsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/groupBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/gt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/gte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/hasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/head.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/inRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/indexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/initial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/intersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/intersectionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/intersectionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/invertBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/invokeMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isArrayLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isBoolean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isEqualWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isMatchWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isNil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isNull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isObjectLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isUndefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isWeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/isWeakSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/iteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/kebabCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/keyBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/keysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/lang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/last.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/lastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/lodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/lodash.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/lowerCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/lowerFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/lt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/lte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/mapKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/mapValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/matches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/matchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/maxBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/mean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/meanBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/memoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/mergeWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/methodOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/minBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/multiply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/negate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/next.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/nth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/nthArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/omit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/omitBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/orderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/over.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/overArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/overEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/overSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/padEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/padStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/parseInt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/partialRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/partition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/pick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/pickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/plant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/propertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/pull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/pullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/pullAllBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/pullAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/pullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/rangeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/rearg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/reduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/rest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/result.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/setWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/shuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/snakeCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sortedIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sortedLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sortedLastIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sortedLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sortedUniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/spread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/startCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/startsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/stubArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/stubFalse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/stubObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/stubString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/stubTrue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/subtract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/sumBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/tail.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/take.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/takeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/takeRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/takeWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/tap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/template.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/templateSettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/throttle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/thru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toJSON.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toLower.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toPairsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/toUpper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/trimEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/trimStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/truncate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/unary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/unescape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/union.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/unionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/unionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/uniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/uniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/uniqWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/uniqueId.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/unset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/unzip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/unzipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/update.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/updateWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/upperCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/upperFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/valueOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/valuesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/without.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/words.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/wrapperAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/wrapperChain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/wrapperLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/wrapperReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/wrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/xor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/xorBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/xorWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/zip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/zipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/zipObjectDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/node_modules/lodash/zipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/package-lock.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/src/release/bump-version.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/src/release/check-version.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/src/release/make-bower.json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/src/release/make-version.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/src/release/release.sh</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/test/bundle-test.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/test/bundle-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/test/demo-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3/test/node-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/.jscsrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/dist/dagre.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/dist/dagre.core.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/dist/dagre.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/dist/dagre.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/karma.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/karma.core.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/acyclic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/add-border-segments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/coordinate-system.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/data/list.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/debug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/graphlib.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/greedy-fas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/layout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/lodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/nesting-graph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/normalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/order/add-subgraph-constraints.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/order/barycenter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/order/build-layer-graph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/order/cross-count.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/order/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/order/init-order.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/order/resolve-conflicts.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/order/sort-subgraph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/order/sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/parent-dummy-chains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/position/bk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/position/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/rank/feasible-tree.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/rank/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/rank/network-simplex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/rank/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/lib/version.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/CHANGES.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/LICENSE.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/etc/dashdash.bash_completion.in</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/lib/dashdash.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/node_modules/assert-plus/AUTHORS</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/node_modules/assert-plus/CHANGES.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/node_modules/assert-plus/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/node_modules/assert-plus/assert.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/node_modules/assert-plus/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/LICENSE.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/lib/parser.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/lib/utils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/LICENSE.txt</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/URL-impl.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/URL.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/URLSearchParams-impl.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/URLSearchParams.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/infra.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/public-api.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/url-state-machine.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/urlencoded.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/utils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/.coveralls.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/karma.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/src/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/src/debug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/src/inspector-log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/src/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/decamelize/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/decamelize/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/decamelize/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/decamelize/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/decode-uri-component/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/decode-uri-component/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/decode-uri-component/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/decode-uri-component/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/LICENSE</Path>
@@ -10201,11 +7435,16 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/test/NaN.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/test/cmp.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/test/neg-vs-pos-0.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/License</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/lib/delayed_stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/diacritics-map/LICENSE</Path>
<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>
@@ -10253,6 +7492,10 @@
<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>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-serializer/node_modules/domelementtype/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-serializer/node_modules/domelementtype/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-serializer/node_modules/domelementtype/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-serializer/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domelementtype/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domelementtype/index.js</Path>
@@ -10329,6 +7572,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/easy-stack/licence.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/easy-stack/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/easy-stack/stack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/index.js</Path>
@@ -10350,12 +7594,2608 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/docs/2.x/api.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/docs/2.x/how-to.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/gulpfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/src/GhReleases.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/test/app/main.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/test/app/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/test/test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/bin/asar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/lib/asar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/lib/crawlfs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/lib/disk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/lib/filesystem.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/lib/snapshot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/node_modules/glob/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/node_modules/glob/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/node_modules/glob/common.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/node_modules/glob/glob.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/node_modules/glob/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/node_modules/glob/sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/asar/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/allLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/allSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/any.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/anyLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/anySeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/applyEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/applyEachSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/asyncify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/auto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/autoInject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/cargo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/compose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/concatLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/concatSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/detect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/detectLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/detectSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/dir.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/dist/async.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/dist/async.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/dist/async.min.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/doDuring.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/doUntil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/doWhilst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/during.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/eachLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/eachOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/eachOfLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/eachOfSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/eachSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/ensureAsync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/everyLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/everySeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/filterLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/filterSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/findLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/findSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/foldl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/foldr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/forEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/forEachLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/forEachOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/forEachOfLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/forEachOfSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/forEachSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/forever.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/groupBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/groupByLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/groupBySeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/inject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/DoublyLinkedList.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/applyEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/breakLoop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/consoleFunc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/createTester.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/doLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/doParallel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/doParallelLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/eachOfLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/findGetResult.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/getIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/initialParams.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/notId.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/onlyOnce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/parallel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/queue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/setImmediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/withoutIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/internal/wrapAsync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/mapLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/mapSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/mapValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/mapValuesLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/mapValuesSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/memoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/nextTick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_DataView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_Hash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_LazyWrapper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_ListCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_LodashWrapper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_Map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_MapCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_Promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_Set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_SetCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_Stack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_Symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_Uint8Array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_WeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayFilter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayIncludes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayIncludesWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayLikeKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayPush.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayReduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayReduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arraySample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arraySampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arrayShuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_arraySome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_asciiSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_asciiToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_asciiWords.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_assignMergeValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_assignValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_assocIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseAssign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseAssignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseAssignValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseClamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseConforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseConformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseCreate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseDelay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseDifference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseExtremum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseFill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseFilter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseFindIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseFindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseFlatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseFor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseForOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseForOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseForRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseFunctions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseGetAllKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseGetTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseGt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseHasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseInRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIndexOfWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIntersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseInverter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseInvoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsEqualDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIsTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseIteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseLt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseMatches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseMatchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseMean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseMerge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseMergeDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseNth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseOrderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_basePick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_basePickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_basePropertyDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_basePropertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_basePullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_basePullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseRandom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseReduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSetData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSetToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseShuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseSum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseTimes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseToNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseUnary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseUnset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseUpdate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseWrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseXor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_baseZipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_cacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_castArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_castFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_castPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_castRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_castSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_charsEndIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_charsStartIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_cloneArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_cloneBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_cloneDataView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_cloneRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_cloneSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_cloneTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_compareAscending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_compareMultiple.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_composeArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_composeArgsRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_copyArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_copyObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_copySymbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_copySymbolsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_coreJsData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_countHolders.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createAssigner.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createBaseEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createBaseFor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createBind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createCaseFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createCompounder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createCtor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createCurry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createFind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createFlow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createHybrid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createInverter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createMathOperation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createOver.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createPadding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createPartial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createRecurry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createRelationalOperation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createRound.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_createWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_customDefaultsAssignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_customDefaultsMerge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_customOmitClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_deburrLetter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_defineProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_equalArrays.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_equalByTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_equalObjects.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_escapeHtmlChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_escapeStringChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_flatRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_freeGlobal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getAllKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getAllKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getFuncName.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getHolder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getMapData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getMatchData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getPrototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getRawTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getSymbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getSymbolsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_getWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_hasPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_hasUnicode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_hasUnicodeWord.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_hashClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_hashDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_hashGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_hashHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_hashSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_initCloneArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_initCloneByTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_initCloneObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_insertWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_isFlattenable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_isIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_isIterateeCall.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_isKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_isKeyable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_isLaziable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_isMaskable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_isMasked.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_isPrototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_isStrictComparable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_iteratorToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_lazyClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_lazyReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_lazyValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_listCacheClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_listCacheDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_listCacheGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_listCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_listCacheSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_mapCacheClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_mapCacheDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_mapCacheGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_mapCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_mapCacheSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_mapToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_matchesStrictComparable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_memoizeCapped.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_mergeData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_metaMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_nativeCreate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_nativeKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_nativeKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_nodeUtil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_objectToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_overArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_overRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_parent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_reEscape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_reEvaluate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_reInterpolate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_realNames.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_reorder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_replaceHolders.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_root.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_safeGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_setCacheAdd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_setCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_setData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_setToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_setToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_setToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_setWrapToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_shortOut.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_shuffleSelf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_stackClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_stackDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_stackGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_stackHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_stackSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_strictIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_strictLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_stringSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_stringToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_stringToPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_toKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_toSource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_unescapeHtmlChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_unicodeSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_unicodeToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_unicodeWords.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_updateWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/_wrapperClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/add.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/after.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/ary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/assignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/assignInWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/assignWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/attempt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/before.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/bindAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/bindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/camelCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/capitalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/castArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/ceil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/chain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/chunk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/clamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/cloneDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/cloneDeepWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/cloneWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/commit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/compact.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/cond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/conforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/conformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/core.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/countBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/curry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/curryRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/date.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/debounce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/deburr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/defaultTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/defaultsDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/difference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/differenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/differenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/divide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/drop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/dropRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/dropRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/dropWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/eachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/endsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/entriesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/eq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/escapeRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/extend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/extendWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/findIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/findKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/findLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/findLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/findLastKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/first.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/flatMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/flatMapDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/flatMapDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/flatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/flattenDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/flattenDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/flip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/floor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/flow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/flowRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/forEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/forEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/forIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/forInRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/forOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/forOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/F.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/T.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/__.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/_baseConvert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/_convertBrowser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/_falseOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/_mapping.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/_util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/add.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/after.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/allPass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/always.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/any.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/anyPass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/ary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/assignAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/assignAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/assignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/assignInAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/assignInAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/assignInWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/assignWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/assoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/assocPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/attempt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/before.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/bindAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/bindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/camelCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/capitalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/castArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/ceil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/chain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/chunk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/clamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/cloneDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/cloneDeepWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/cloneWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/commit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/compact.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/complement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/compose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/cond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/conforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/conformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/contains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/convert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/countBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/curry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/curryN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/curryRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/curryRightN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/date.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/debounce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/deburr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/defaultTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/defaultsAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/defaultsDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/defaultsDeepAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/difference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/differenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/differenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/dissoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/dissocPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/divide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/drop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/dropLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/dropLastWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/dropRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/dropRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/dropWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/eachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/endsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/entriesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/eq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/equals.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/escapeRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/extend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/extendAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/extendAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/extendWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/findFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/findIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/findIndexFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/findKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/findLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/findLastFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/findLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/findLastIndexFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/findLastKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/first.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/flatMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/flatMapDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/flatMapDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/flatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/flattenDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/flattenDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/flip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/floor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/flow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/flowRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/forEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/forEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/forIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/forInRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/forOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/forOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/fromPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/functions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/functionsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/getOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/groupBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/gt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/gte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/hasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/head.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/identical.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/inRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/includesFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/indexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/indexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/indexOfFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/init.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/initial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/intersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/intersectionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/intersectionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/invertBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/invertObj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/invokeArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/invokeArgsMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/invokeMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isArrayLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isBoolean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isEqualWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isMatchWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isNil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isNull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isObjectLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isUndefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isWeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/isWeakSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/iteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/juxt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/kebabCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/keyBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/keysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/lang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/last.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/lastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/lastIndexOfFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/lowerCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/lowerFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/lt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/lte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/mapKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/mapValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/matches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/matchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/maxBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/mean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/meanBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/memoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/mergeAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/mergeAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/mergeWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/methodOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/minBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/multiply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/nAry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/negate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/next.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/nth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/nthArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/omit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/omitAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/omitBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/orderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/over.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/overArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/overEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/overSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/padChars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/padCharsEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/padCharsStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/padEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/padStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/parseInt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/partialRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/partition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pathEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pathOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/paths.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pickAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pipe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/placeholder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/plant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pluck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/prop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/propEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/propOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/propertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/props.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pullAllBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pullAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/pullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/rangeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/rangeStep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/rangeStepRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/rearg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/reduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/rest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/restFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/result.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/setWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/shuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/snakeCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sortedIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sortedLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sortedLastIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sortedLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sortedUniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/spread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/spreadFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/startCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/startsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/stubArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/stubFalse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/stubObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/stubString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/stubTrue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/subtract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/sumBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/symmetricDifference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/symmetricDifferenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/symmetricDifferenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/tail.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/take.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/takeLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/takeLastWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/takeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/takeRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/takeWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/tap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/template.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/templateSettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/throttle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/thru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toJSON.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toLower.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toPairsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/toUpper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/trimChars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/trimCharsEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/trimCharsStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/trimEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/trimStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/truncate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/unapply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/unary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/unescape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/union.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/unionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/unionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/uniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/uniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/uniqWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/uniqueId.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/unnest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/unset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/unzip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/unzipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/update.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/updateWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/upperCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/upperFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/useWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/valueOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/valuesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/where.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/whereEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/without.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/words.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/wrapperAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/wrapperChain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/wrapperLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/wrapperReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/wrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/xor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/xorBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/xorWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/zip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/zipAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/zipObj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/zipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/zipObjectDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fp/zipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/fromPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/functions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/functionsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/groupBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/gt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/gte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/hasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/head.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/inRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/indexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/initial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/intersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/intersectionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/intersectionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/invertBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/invokeMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isArrayLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isBoolean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isEqualWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isMatchWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isNil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isNull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isObjectLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isUndefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isWeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/isWeakSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/iteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/kebabCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/keyBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/keysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/lang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/last.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/lastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/lodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/lodash.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/lowerCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/lowerFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/lt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/lte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/mapKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/mapValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/matches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/matchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/maxBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/mean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/meanBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/memoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/mergeWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/methodOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/minBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/multiply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/negate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/next.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/nth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/nthArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/omit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/omitBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/orderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/org.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/over.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/overArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/overEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/overSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/padEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/padStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/parseInt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/partialRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/partition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/pick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/pickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/plant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/propertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/pull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/pullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/pullAllBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/pullAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/pullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/rangeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/rearg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/reduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/rest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/result.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/setWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/shuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/snakeCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sortedIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sortedLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sortedLastIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sortedLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sortedUniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/spread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/startCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/startsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/stubArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/stubFalse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/stubObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/stubString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/stubTrue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/subtract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/sumBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/tail.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/take.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/takeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/takeRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/takeWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/tap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/template.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/templateSettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/throttle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/thru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toJSON.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toLower.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toPairsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/toUpper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/trimEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/trimStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/truncate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/unary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/unescape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/union.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/unionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/unionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/uniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/uniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/uniqWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/uniqueId.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/unset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/unzip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/unzipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/update.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/updateWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/upperCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/upperFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/valueOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/valuesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/without.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/words.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/wrapperAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/wrapperChain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/wrapperLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/wrapperReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/wrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/xor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/xorBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/xorWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/zip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/zipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/zipObjectDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/node_modules/lodash/zipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/parallel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/parallelLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/priorityQueue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/queue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/race.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/reduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/reflect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/reflectAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/rejectLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/rejectSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/retry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/retryable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/select.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/selectLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/selectSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/series.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/setImmediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/someLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/someSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/sortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/timeout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/timesLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/timesSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/tryEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/unmemoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/until.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/waterfall.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/whilst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/async/wrapSync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/copy-sync/copy-file-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/copy-sync/copy-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/copy-sync/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/copy/copy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/copy/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/copy/ncp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/empty/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/ensure/file.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/ensure/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/ensure/link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/ensure/symlink-paths.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/ensure/symlink-type.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/ensure/symlink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/json/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/json/jsonfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/json/output-json-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/json/output-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/mkdirs/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/mkdirs/mkdirs-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/mkdirs/mkdirs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/mkdirs/win32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/move/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/output/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/remove/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/remove/rimraf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/util/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/util/utimes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/walk-sync/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/lib/walk/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/fs-extra/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_DataView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_Hash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_LazyWrapper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_ListCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_LodashWrapper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_Map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_MapCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_Promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_Set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_SetCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_Stack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_Symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_Uint8Array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_WeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayFilter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayIncludes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayIncludesWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayLikeKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayPush.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayReduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayReduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arraySample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arraySampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arrayShuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_arraySome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_asciiSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_asciiToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_asciiWords.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_assignMergeValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_assignValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_assocIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseAssign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseAssignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseAssignValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseClamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseConforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseConformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseCreate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseDelay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseDifference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseExtremum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseFill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseFilter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseFindIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseFindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseFlatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseFor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseForOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseForOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseForRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseFunctions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseGetAllKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseGetTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseGt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseHasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseInRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIndexOfWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIntersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseInverter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseInvoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsEqualDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIsTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseIteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseLt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseMatches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseMatchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseMean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseMerge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseMergeDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseNth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseOrderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_basePick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_basePickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_basePropertyDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_basePropertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_basePullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_basePullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseRandom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseReduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSetData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSetToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseShuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseSum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseTimes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseToNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseUnary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseUnset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseUpdate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseWrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseXor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_baseZipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_cacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_castArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_castFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_castPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_castRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_castSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_charsEndIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_charsStartIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_cloneArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_cloneBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_cloneDataView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_cloneRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_cloneSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_cloneTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_compareAscending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_compareMultiple.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_composeArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_composeArgsRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_copyArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_copyObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_copySymbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_copySymbolsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_coreJsData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_countHolders.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createAssigner.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createBaseEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createBaseFor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createBind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createCaseFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createCompounder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createCtor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createCurry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createFind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createFlow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createHybrid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createInverter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createMathOperation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createOver.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createPadding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createPartial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createRecurry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createRelationalOperation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createRound.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_createWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_customDefaultsAssignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_customDefaultsMerge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_customOmitClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_deburrLetter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_defineProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_equalArrays.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_equalByTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_equalObjects.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_escapeHtmlChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_escapeStringChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_flatRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_freeGlobal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getAllKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getAllKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getFuncName.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getHolder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getMapData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getMatchData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getPrototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getRawTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getSymbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getSymbolsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_getWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_hasPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_hasUnicode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_hasUnicodeWord.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_hashClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_hashDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_hashGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_hashHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_hashSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_initCloneArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_initCloneByTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_initCloneObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_insertWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_isFlattenable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_isIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_isIterateeCall.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_isKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_isKeyable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_isLaziable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_isMaskable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_isMasked.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_isPrototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_isStrictComparable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_iteratorToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_lazyClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_lazyReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_lazyValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_listCacheClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_listCacheDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_listCacheGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_listCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_listCacheSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_mapCacheClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_mapCacheDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_mapCacheGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_mapCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_mapCacheSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_mapToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_matchesStrictComparable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_memoizeCapped.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_mergeData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_metaMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_nativeCreate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_nativeKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_nativeKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_nodeUtil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_objectToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_overArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_overRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_parent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_reEscape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_reEvaluate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_reInterpolate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_realNames.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_reorder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_replaceHolders.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_root.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_safeGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_setCacheAdd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_setCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_setData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_setToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_setToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_setToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_setWrapToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_shortOut.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_shuffleSelf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_stackClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_stackDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_stackGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_stackHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_stackSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_strictIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_strictLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_stringSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_stringToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_stringToPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_toKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_toSource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_unescapeHtmlChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_unicodeSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_unicodeToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_unicodeWords.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_updateWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/_wrapperClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/add.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/after.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/ary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/assignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/assignInWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/assignWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/attempt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/before.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/bindAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/bindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/camelCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/capitalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/castArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/ceil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/chain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/chunk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/clamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/cloneDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/cloneDeepWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/cloneWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/commit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/compact.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/cond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/conforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/conformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/core.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/countBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/curry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/curryRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/date.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/debounce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/deburr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/defaultTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/defaultsDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/difference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/differenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/differenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/divide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/drop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/dropRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/dropRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/dropWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/eachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/endsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/entriesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/eq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/escapeRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/extend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/extendWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/findIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/findKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/findLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/findLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/findLastKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/first.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/flatMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/flatMapDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/flatMapDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/flatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/flattenDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/flattenDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/flip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/floor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/flow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/flowRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/forEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/forEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/forIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/forInRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/forOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/forOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/F.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/T.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/__.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/_baseConvert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/_convertBrowser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/_falseOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/_mapping.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/_util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/add.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/after.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/allPass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/always.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/any.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/anyPass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/ary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/assignAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/assignAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/assignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/assignInAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/assignInAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/assignInWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/assignWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/assoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/assocPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/attempt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/before.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/bindAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/bindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/camelCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/capitalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/castArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/ceil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/chain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/chunk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/clamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/cloneDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/cloneDeepWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/cloneWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/commit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/compact.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/complement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/compose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/cond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/conforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/conformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/contains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/convert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/countBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/curry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/curryN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/curryRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/curryRightN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/date.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/debounce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/deburr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/defaultTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/defaultsAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/defaultsDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/defaultsDeepAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/difference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/differenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/differenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/dissoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/dissocPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/divide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/drop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/dropLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/dropLastWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/dropRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/dropRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/dropWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/eachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/endsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/entriesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/eq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/equals.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/escapeRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/extend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/extendAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/extendAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/extendWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/findFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/findIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/findIndexFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/findKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/findLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/findLastFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/findLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/findLastIndexFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/findLastKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/first.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/flatMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/flatMapDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/flatMapDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/flatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/flattenDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/flattenDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/flip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/floor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/flow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/flowRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/forEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/forEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/forIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/forInRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/forOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/forOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/fromPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/functions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/functionsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/getOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/groupBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/gt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/gte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/hasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/head.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/identical.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/inRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/includesFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/indexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/indexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/indexOfFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/init.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/initial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/intersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/intersectionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/intersectionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/invertBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/invertObj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/invokeArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/invokeArgsMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/invokeMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isArrayLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isBoolean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isEqualWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isMatchWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isNil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isNull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isObjectLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isUndefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isWeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/isWeakSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/iteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/juxt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/kebabCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/keyBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/keysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/lang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/last.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/lastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/lastIndexOfFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/lowerCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/lowerFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/lt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/lte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/mapKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/mapValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/matches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/matchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/maxBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/mean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/meanBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/memoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/mergeAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/mergeAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/mergeWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/methodOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/minBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/multiply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/nAry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/negate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/next.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/nth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/nthArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/omit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/omitAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/omitBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/orderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/over.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/overArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/overEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/overSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/padChars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/padCharsEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/padCharsStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/padEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/padStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/parseInt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/partialRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/partition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pathEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pathOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/paths.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pickAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pipe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/placeholder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/plant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pluck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/prop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/propEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/propOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/propertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/props.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pullAllBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pullAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/pullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/rangeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/rangeStep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/rangeStepRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/rearg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/reduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/rest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/restFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/result.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/setWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/shuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/snakeCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sortedIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sortedLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sortedLastIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sortedLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sortedUniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/spread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/spreadFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/startCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/startsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/stubArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/stubFalse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/stubObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/stubString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/stubTrue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/subtract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/sumBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/symmetricDifference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/symmetricDifferenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/symmetricDifferenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/tail.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/take.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/takeLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/takeLastWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/takeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/takeRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/takeWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/tap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/template.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/templateSettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/throttle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/thru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toJSON.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toLower.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toPairsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/toUpper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/trimChars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/trimCharsEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/trimCharsStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/trimEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/trimStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/truncate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/unapply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/unary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/unescape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/union.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/unionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/unionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/uniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/uniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/uniqWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/uniqueId.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/unnest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/unset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/unzip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/unzipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/update.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/updateWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/upperCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/upperFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/useWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/valueOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/valuesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/where.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/whereEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/without.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/words.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/wrapperAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/wrapperChain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/wrapperLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/wrapperReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/wrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/xor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/xorBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/xorWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/zip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/zipAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/zipObj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/zipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/zipObjectDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fp/zipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/fromPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/functions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/functionsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/groupBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/gt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/gte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/hasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/head.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/inRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/indexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/initial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/intersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/intersectionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/intersectionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/invertBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/invokeMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isArrayLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isBoolean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isEqualWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isMatchWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isNil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isNull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isObjectLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isUndefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isWeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/isWeakSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/iteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/kebabCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/keyBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/keysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/lang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/last.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/lastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/lodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/lodash.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/lowerCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/lowerFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/lt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/lte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/mapKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/mapValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/matches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/matchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/maxBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/mean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/meanBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/memoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/mergeWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/methodOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/minBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/multiply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/negate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/next.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/nth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/nthArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/omit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/omitBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/orderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/over.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/overArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/overEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/overSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/padEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/padStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/parseInt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/partialRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/partition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/pick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/pickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/plant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/propertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/pull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/pullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/pullAllBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/pullAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/pullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/rangeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/rearg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/reduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/rest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/result.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/setWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/shuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/snakeCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sortedIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sortedLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sortedLastIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sortedLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sortedUniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/spread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/startCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/startsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/stubArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/stubFalse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/stubObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/stubString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/stubTrue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/subtract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/sumBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/tail.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/take.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/takeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/takeRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/takeWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/tap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/template.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/templateSettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/throttle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/thru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toJSON.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toLower.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toPairsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/toUpper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/trimEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/trimStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/truncate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/unary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/unescape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/union.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/unionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/unionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/uniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/uniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/uniqWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/uniqueId.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/unset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/unzip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/unzipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/update.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/updateWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/upperCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/upperFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/valueOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/valuesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/without.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/words.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/wrapperAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/wrapperChain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/wrapperLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/wrapperReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/wrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/xor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/xorBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/xorWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/zip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/zipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/zipObjectDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/lodash/zipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/string-width/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/string-width/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/string-width/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/string-width/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/strip-ansi/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/strip-ansi/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/strip-ansi/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/strip-ansi/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs-parser/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs-parser/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs-parser/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs-parser/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs-parser/lib/tokenize-arg-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs-parser/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/completion.sh.hbs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/lib/apply-extends.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/lib/argsert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/lib/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/lib/command.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/lib/completion.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/lib/levenshtein.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/lib/obj-filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/lib/usage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/lib/validation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/lib/yerror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/be.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/de.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/en.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/es.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/fr.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/hi.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/hu.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/id.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/it.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/ja.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/ko.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/nb.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/nl.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/pirate.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/pl.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/pt.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/pt_BR.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/ru.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/th.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/tr.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/zh_CN.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/locales/zh_TW.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/node_modules/yargs/yargs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/resources/control.ejs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/resources/desktop.ejs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/resources/icon.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/resources/logo.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/resources/overrides.ejs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/src/cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-debian/src/installer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/bin/asar</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/lib/asar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/lib/crawlfs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/lib/disk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/lib/filesystem.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/lib/snapshot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/node_modules/glob/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/node_modules/glob/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/node_modules/glob/common.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/node_modules/glob/glob.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/node_modules/glob/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/node_modules/glob/sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/asar/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/allLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/allSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/any.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/anyLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/anySeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/applyEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/applyEachSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/asyncify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/auto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/autoInject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/cargo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/compose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/concatLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/concatSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/detect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/detectLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/detectSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/dir.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/dist/async.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/dist/async.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/dist/async.min.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/doDuring.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/doUntil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/doWhilst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/during.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/eachLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/eachOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/eachOfLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/eachOfSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/eachSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/ensureAsync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/everyLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/everySeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/filterLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/filterSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/findLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/findSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/foldl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/foldr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/forEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/forEachLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/forEachOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/forEachOfLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/forEachOfSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/forEachSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/forever.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/groupBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/groupByLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/groupBySeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/inject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/DoublyLinkedList.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/applyEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/breakLoop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/consoleFunc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/createTester.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/doLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/doParallel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/doParallelLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/eachOfLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/findGetResult.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/getIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/initialParams.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/notId.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/onlyOnce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/parallel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/queue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/setImmediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/withoutIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/internal/wrapAsync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/mapLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/mapSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/mapValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/mapValuesLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/mapValuesSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/memoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/nextTick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/parallel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/parallelLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/priorityQueue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/queue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/race.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/reduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/reflect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/reflectAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/rejectLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/rejectSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/retry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/retryable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/select.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/selectLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/selectSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/series.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/setImmediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/someLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/someSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/sortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/timeout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/timesLimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/timesSeries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/tryEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/unmemoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/until.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/waterfall.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/whilst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/async/wrapSync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/copy-sync/copy-file-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/copy-sync/copy-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/copy-sync/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/copy/copy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/copy/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/copy/ncp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/empty/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/ensure/file.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/ensure/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/ensure/link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/ensure/symlink-paths.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/ensure/symlink-type.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/ensure/symlink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/json/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/json/jsonfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/json/output-json-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/json/output-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/mkdirs/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/mkdirs/mkdirs-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/mkdirs/mkdirs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/mkdirs/win32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/move/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/output/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/remove/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/remove/rimraf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/util/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/util/utimes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/walk-sync/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/lib/walk/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/fs-extra/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/string-width/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/string-width/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/string-width/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/string-width/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/strip-ansi/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/strip-ansi/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/strip-ansi/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/strip-ansi/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs-parser/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs-parser/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs-parser/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs-parser/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs-parser/lib/tokenize-arg-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs-parser/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/completion.sh.hbs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/lib/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/lib/command.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/lib/completion.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/lib/levenshtein.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/lib/obj-filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/lib/usage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/lib/validation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/be.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/de.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/en.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/es.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/fr.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/hi.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/hu.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/id.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/it.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/ja.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/ko.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/nb.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/nl.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/pirate.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/pl.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/pt.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/pt_BR.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/ru.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/th.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/tr.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/locales/zh_CN.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules/yargs/yargs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/resources/desktop.ejs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/resources/icon.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/resources/logo.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/resources/macros.ejs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/resources/spec.ejs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/src/cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/src/installer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/emoji-regex/LICENSE-MIT.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/emoji-regex/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/emoji-regex/es2015/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/emoji-regex/es2015/text.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/emoji-regex/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/emoji-regex/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/emoji-regex/text.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/encoding/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/encoding/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/encoding/LICENSE</Path>
@@ -10423,19 +10263,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/spec/index_spec.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/spec/support/jasmine.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/spec/tests.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/LICENSE.BSD</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/bin/escodegen.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/bin/esgenerate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/escodegen.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/ChangeLog</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/LICENSE.BSD</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/bin/esparse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/bin/esvalidate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/dist/esprima.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esprima/ChangeLog</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esprima/LICENSE.BSD</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esprima/README.md</Path>
@@ -10752,6 +10579,868 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/lib/xhrSimpleDataSerializer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/lib/xhrSimpleDataSerializer.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/module-map.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/Gruntfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/build/Gruntfile.ls</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/build/build.ls</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/build/config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/build/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/client/core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/client/core.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/client/core.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/client/library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/client/library.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/client/library.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/client/shim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/client/shim.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/client/shim.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/core/_.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/core/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/core/dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/core/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/core/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/core/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/core/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/core/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/core/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es5/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/reflect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es6/weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es7/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es7/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es7/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es7/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es7/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es7/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/es7/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/_.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/find-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/for-each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/last-index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/pop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/push.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/reduce-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/shift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/splice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/unshift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/array/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/clear-immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/function/has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/function/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/function/name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/function/part.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/get-iterator-method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/get-iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/html-collection/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/html-collection/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/is-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/json/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/acosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/asinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/atanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/cbrt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/clz32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/cosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/hypot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/imul.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/log10.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/log2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/sinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/tanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/math/trunc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/node-list/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/node-list/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/epsilon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/is-finite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/is-nan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/is-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/max-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/min-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/number/parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/define-properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/freeze.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/get-own-property-descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/get-own-property-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/get-own-property-symbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/is-frozen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/is-sealed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/make.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/seal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/object/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/delete-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/reflect/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/regexp/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/regexp/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/set-immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/set-interval.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/set-timeout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/code-point-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/from-code-point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/pad-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/raw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/trim-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/string/unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/for.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/is-concat-spreadable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/key-for.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/to-string-tag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/symbol/unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/fn/weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/js/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/js/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/core/_.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/core/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/core/dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/core/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/core/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/core/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/core/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/core/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/core/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es5/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/reflect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es6/weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es7/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es7/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es7/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es7/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es7/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es7/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/es7/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/_.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/find-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/for-each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/last-index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/pop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/push.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/reduce-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/shift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/splice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/unshift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/array/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/clear-immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/function/has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/function/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/function/name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/function/part.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/get-iterator-method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/get-iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/html-collection/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/html-collection/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/is-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/json/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/acosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/asinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/atanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/cbrt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/clz32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/cosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/hypot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/imul.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/log10.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/log2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/sinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/tanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/math/trunc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/node-list/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/node-list/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/epsilon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/is-finite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/is-nan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/is-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/max-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/min-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/number/parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/define-properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/freeze.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/get-own-property-descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/get-own-property-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/get-own-property-symbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/is-frozen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/is-sealed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/make.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/seal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/object/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/delete-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/reflect/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/regexp/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/regexp/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/set-immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/set-interval.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/set-timeout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/code-point-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/from-code-point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/pad-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/raw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/trim-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/string/unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/for.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/is-concat-spreadable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/key-for.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/to-string-tag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/symbol/unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/fn/weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/js/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/js/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.a-function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.an-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.array-copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.array-fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.array-includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.array-methods.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.array-species-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.cof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.collection-strong.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.collection-to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.collection-weak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.ctx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.defined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.dom-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.enum-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.export.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.fails-is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.fails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.fix-re-wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.for-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.get-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.hide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.is-array-iter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.is-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.iter-call.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.iter-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.iter-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.iter-detect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.iter-step.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.iterators.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.keyof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.math-expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.math-log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.math-sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.microtask.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.object-assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.object-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.object-sap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.object-to-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.property-desc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.redefine-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.replacer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.same-value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.set-proto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.set-species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.set-to-string-tag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.shared.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.species-constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.strict-new.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.string-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.string-context.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.string-pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.string-repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.string-trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.task.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.to-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.to-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.to-iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.to-length.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.to-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.typed-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.typed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.uid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/$.wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.function.part.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.get-iterator-method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.get-iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.is-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.number.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.object.classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.object.define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.object.is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.object.make.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.string.escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/core.string.unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es5.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.array.copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.array.fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.array.find-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.array.find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.array.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.array.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.array.of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.array.species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.date.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.function.has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.function.name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.acosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.asinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.atanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.cbrt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.clz32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.cosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.hypot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.imul.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.log10.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.log2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.sinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.tanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.math.trunc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.number.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.number.epsilon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.number.is-finite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.number.is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.number.is-nan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.number.is-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.number.max-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.number.min-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.number.parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.number.parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.freeze.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.get-own-property-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.is-frozen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.is-sealed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.seal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.object.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.delete-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.reflect.set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.regexp.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.regexp.flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.regexp.match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.regexp.replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.regexp.search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.regexp.split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.string.code-point-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.string.ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.string.from-code-point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.string.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.string.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.string.raw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.string.repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.string.starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.string.trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.array-buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.data-view.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.float32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.float64-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.int16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.int32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.int8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.uint16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.uint32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.uint8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.typed.uint8-clamped-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es6.weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.array.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.map.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.object.entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.object.get-own-property-descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.object.values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.regexp.escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.set.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.string.at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.string.pad-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.string.pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.string.trim-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/es7.string.trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/js.array.statics.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/web.dom.iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/web.immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/modules/web.timers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/shim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/web/dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/web/immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/web/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/library/web/timers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.a-function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.an-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.array-copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.array-fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.array-includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.array-methods.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.array-species-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.cof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.collection-strong.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.collection-to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.collection-weak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.ctx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.defined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.dom-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.enum-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.export.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.fails-is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.fails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.fix-re-wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.for-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.get-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.hide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.is-array-iter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.is-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.iter-call.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.iter-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.iter-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.iter-detect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.iter-step.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.iterators.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.keyof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.math-expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.math-log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.math-sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.microtask.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.object-assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.object-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.object-sap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.object-to-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.property-desc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.redefine-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.replacer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.same-value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.set-proto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.set-species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.set-to-string-tag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.shared.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.species-constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.strict-new.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.string-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.string-context.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.string-pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.string-repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.string-trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.task.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.to-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.to-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.to-iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.to-length.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.to-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.typed-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.typed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.uid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/$.wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.function.part.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.get-iterator-method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.get-iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.is-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.number.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.object.classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.object.define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.object.is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.object.make.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.string.escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/core.string.unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es5.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.array.copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.array.fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.array.find-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.array.find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.array.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.array.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.array.of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.array.species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.date.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.function.has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.function.name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.acosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.asinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.atanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.cbrt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.clz32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.cosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.hypot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.imul.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.log10.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.log2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.sinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.tanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.math.trunc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.number.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.number.epsilon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.number.is-finite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.number.is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.number.is-nan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.number.is-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.number.max-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.number.min-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.number.parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.number.parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.freeze.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.get-own-property-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.is-frozen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.is-sealed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.seal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.object.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.delete-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.reflect.set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.regexp.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.regexp.flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.regexp.match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.regexp.replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.regexp.search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.regexp.split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.string.code-point-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.string.ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.string.from-code-point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.string.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.string.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.string.raw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.string.repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.string.starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.string.trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.array-buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.data-view.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.float32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.float64-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.int16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.int32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.int8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.uint16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.uint32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.uint8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.typed.uint8-clamped-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es6.weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.array.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.map.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.object.entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.object.get-own-property-descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.object.values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.regexp.escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.set.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.string.at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.string.pad-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.string.pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.string.trim-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/es7.string.trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/js.array.statics.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/$.add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/$.collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/$.export.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/$.library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/$.path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/$.redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/$.set-species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/es6.date.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/es6.function.name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/es6.number.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/es6.object.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/es6.regexp.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/es6.regexp.flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/es6.regexp.match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/es6.regexp.replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/es6.regexp.search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/es6.regexp.split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/library/web.dom.iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/web.dom.iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/web.immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/modules/web.timers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/shim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/web/dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/web/immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/web/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/node_modules/core-js/web/timers.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/.travis.yml</Path>
@@ -10778,6 +11467,14 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/node_modules/is-number/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/node_modules/is-number/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/node_modules/is-number/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/node_modules/is-number/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/node_modules/isobject/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/node_modules/isobject/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/node_modules/isobject/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/node_modules/isobject/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/find-up/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/find-up/license</Path>
@@ -10786,6 +11483,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/.eslintignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/.gitmodules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/bower.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/devserver.js</Path>
@@ -10795,36 +11493,13 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/index.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/license</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/.eslintrc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/CONTRIBUTING.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/Gruntfile.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/bower.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/dev/banner.txt</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/dev/raphael.amd.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/dev/raphael.core.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/dev/raphael.svg.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/dev/raphael.vml.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/dev/raphaelTest.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/dev/test/index.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/dev/test/svg/dom.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/dev/test/vml/dom.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/history.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/license.txt</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/raphael.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/raphael.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/raphael.no-deps.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/raphael.no-deps.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/webpack.config.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/node_modules/raphael/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/release/flowchart.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/release/flowchart.js.map</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/release/flowchart.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/release/flowchart.min.js.map</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/releasenotes.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/site/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/site/CNAME</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/site/css/style.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/flowchart.js/site/flowchart-latest.js</Path>
@@ -10906,6 +11581,13 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/forever-agent/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/forever-agent/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/forever-agent/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/License</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/README.md.bak</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/lib/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/lib/form_data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/lib/populate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/README.md</Path>
@@ -10966,27 +11648,43 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/util/assign.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/util/buffer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/util/utimes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/node_modules/jsonfile/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/node_modules/jsonfile/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/node_modules/jsonfile/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/node_modules/jsonfile/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/node_modules/jsonfile/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-plus/LICENSE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-plus/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-plus/appveyor.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-plus/lib/fs-plus.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-plus/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-plus/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs.realpath/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs.realpath/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs.realpath/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs.realpath/old.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs.realpath/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gar/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gar/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gar/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gar/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-caller-file/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-caller-file/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-caller-file/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-folder-size/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-folder-size/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-folder-size/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-folder-size/bin/get-folder-size</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-folder-size/example.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-folder-size/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-folder-size/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/get-folder-size/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/lib/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/node_modules/assert-plus/AUTHORS</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/node_modules/assert-plus/CHANGES.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/node_modules/assert-plus/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/node_modules/assert-plus/assert.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/node_modules/assert-plus/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/glob/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/glob/README.md</Path>
@@ -11001,50 +11699,57 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/got/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/fs.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/graceful-fs.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/legacy-streams.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/polyfills.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/.ackrc</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/.editorconfig</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/dist/graphlib.core.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/dist/graphlib.core.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/dist/graphlib.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/dist/graphlib.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/karma.amd.conf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/karma.conf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/karma.core.conf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/components.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/dfs.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/dijkstra-all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/dijkstra.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/find-cycles.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/floyd-warshall.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/is-acyclic.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/postorder.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/preorder.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/prim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/tarjan.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/topsort.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/data/priority-queue.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/graph.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/lodash.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/todo.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/.jscsrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/dist/graphlib.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/dist/graphlib.core.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/dist/graphlib.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/dist/graphlib.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/karma.amd.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/karma.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/karma.core.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/components.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/dfs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/dijkstra-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/dijkstra.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/find-cycles.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/floyd-warshall.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/is-acyclic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/postorder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/preorder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/prim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/tarjan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/alg/topsort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/data/priority-queue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/graph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/lodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/lib/version.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlib/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/gray-matter.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/lib/parsers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/grunt-electron-installer-debian</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/grunt-electron-installer-redhat</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gud/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gud/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gud/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/afterRequest.json</Path>
@@ -11067,10 +11772,15 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/response.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/timings.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-flag/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-flag/license</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-flag/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-flag/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-validator/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-validator/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-validator/lib/async.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-validator/lib/error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-validator/lib/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-validator/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-color/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-color/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-color/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/LICENSE-MIT.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/bin/he</Path>
@@ -11370,6 +12080,35 @@
<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/history/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/DOMUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/ExecutionEnvironment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/LocationUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/PathUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/cjs/history.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/cjs/history.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/createBrowserHistory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/createHashHistory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/createMemoryHistory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/createTransitionManager.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/es/DOMUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/es/ExecutionEnvironment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/es/LocationUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/es/PathUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/es/createBrowserHistory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/es/createHashHistory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/es/createMemoryHistory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/es/createTransitionManager.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/es/warnAboutDeprecatedESMImport.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/esm/history.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/umd/history.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/umd/history.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/history/warnAboutDeprecatedCJSRequire.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/hoist-non-react-statics/CHANGELOG.md</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>
@@ -11382,6 +12121,47 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-encoding-sniffer/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-encoding-sniffer/lib/html-encoding-sniffer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-encoding-sniffer/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/commander/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/commander/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/commander/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/commander/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/commander/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/commander/typings/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/bin/uglifyjs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/ast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/compress.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/minify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/mozilla-ast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/output.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/propmangle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/scope.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/sourcemap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/node_modules/commander/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/node_modules/commander/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/node_modules/commander/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/node_modules/commander/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/node_modules/commander/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/node_modules/commander/typings/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/tools/domprops.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/tools/exit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/tools/exports.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/tools/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/node_modules/uglify-js/tools/props.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/sample-cli-config-file.conf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/src/htmlminifier.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/src/htmlparser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/src/tokenchain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-minifier/src/utils.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/lib/CollectingHandler.js</Path>
@@ -11392,30 +12172,21 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/lib/Tokenizer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/lib/WritableStream.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/lib/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/CONTRIBUTING.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/GOVERNANCE.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/errors-browser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/errors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/experimentalWarning.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_duplex.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_passthrough.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_readable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_transform.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_writable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/async_iterator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/buffer_list.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/destroy.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/pipeline.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/state.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/stream-browser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/stream.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/readable-browser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/readable.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/.dir-locals.el</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/http_signing.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/lib/parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/lib/signer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/lib/verify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/http-signature/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/i18n.js</Path>
@@ -11427,24 +12198,26 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/locales/en.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/locales/en.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/locales/en.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/.coveralls.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/Makefile</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/dist/debug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/karma.conf.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/node.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/src/browser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/src/common.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/src/debug.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/src/node.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/ms/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/ms/license.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/ms/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/ms/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/test/i18n.base.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/test/i18n.configure.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/test/i18n.test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/iconv-lite/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/iconv-lite/Changelog.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/iconv-lite/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/iconv-lite/README.md</Path>
@@ -11502,6 +12275,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/invariant/browser.js</Path>
<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/node_modules</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>
@@ -11530,10 +12304,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-extendable/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-extendable/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-extendable/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-number/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-number/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-number/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-number/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-fullwidth-code-point/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-fullwidth-code-point/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-fullwidth-code-point/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-fullwidth-code-point/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-obj/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-obj/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-obj/package.json</Path>
@@ -11542,11 +12316,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/index.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/node_modules/isobject/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/node_modules/isobject/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/node_modules/isobject/index.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/node_modules/isobject/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/node_modules/isobject/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-redirect/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-redirect/license</Path>
@@ -11578,6 +12347,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isarray/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isobject/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isobject/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isobject/index.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isobject/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isobject/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isomorphic-fetch/.editorconfig</Path>
@@ -11612,98 +12382,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-queue/queue-vanilla.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-queue/queue.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-queue/stack.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/.gitmodules</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/LICENCE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/Makefile</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/_site/sequence-diagram-min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/_site/sequence-diagram-min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/bower.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/Daniel Midgley.txt</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/Font license - Daniel.pdf</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/daniel-demo.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/daniel.ttf</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/daniel.woff</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/daniel.woff2</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/daniel_400.font.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/daniel_700.font.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/daniel_black_900.font.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/danielbd-demo.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/danielbd-original.ttf</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/danielbd.ttf</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/danielbd.woff</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/danielbd.woff2</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/danielbk-demo.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/danielbk.ttf</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/danielbk.woff</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/danielbk.woff2</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/generator_config.txt</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/specimen_files/grid_12-825-55-15.css</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/specimen_files/specimen_stylesheet.css</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fonts/daniel/stylesheet.css</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fucknpm/diagram-grammar.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fucknpm/grammar.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fucknpm/grammar.js.tmp</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fucknpm/sequence-diagram-min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fucknpm/sequence-diagram-min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/fucknpm/sequence-diagram.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/.gitmodules</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/README.markdown</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/bower.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/cortex.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/.jshintrc</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/Gruntfile.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/amdDev.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/copy.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/raphael.core.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/raphael.svg.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/raphael.vml.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/raphaelTest.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/dev/require.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/eve/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/eve/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/eve/component.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/eve/e.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/eve/eve.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/eve/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/history.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/license.txt</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/raphael-min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/raphael.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/reference.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/raphael/reference.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/CNAME</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/CONTRIBUTING.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/favicon.ico</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/index.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/underscore-min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/node_modules/underscore/underscore.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/src/diagram.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/src/grammar.ebnf</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/src/grammar.jison</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/src/jquery-plugin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/src/main.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/src/sequence-diagram.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/test/canvg.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/test/font_test.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/test/grammar-tests.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/test/qunit.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/test/raphael-mock.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-sequence-diagrams/test/test.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-tokens/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-tokens/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-tokens/README.md</Path>
@@ -11745,6 +12423,13 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/str.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/timestamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/node_modules/esprima/ChangeLog</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/node_modules/esprima/LICENSE.BSD</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/node_modules/esprima/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/node_modules/esprima/bin/esparse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/node_modules/esprima/bin/esvalidate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/node_modules/esprima/dist/esprima.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/node_modules/esprima/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/LICENSE</Path>
@@ -11754,6 +12439,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/README.md</Path>
@@ -11802,23 +12488,73 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/stringify.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/test/mocha.opts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/test/stringify_test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/appveyor.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/lib/cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/lib/doug-json-parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/lib/formatter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/lib/jsonlint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/scripts/bundle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/src/jsonlint.l</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/src/jsonlint.y</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/all-tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/10.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/11.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/12.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/13.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/14.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/15.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/16.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/17.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/19.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/2.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/20.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/21.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/22.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/23.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/24.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/25.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/26.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/27.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/28.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/29.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/3.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/30.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/31.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/32.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/33.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/34.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/35.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/36.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/4.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/5.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/6.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/7.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/8.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/fails/9.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/passes/1.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/passes/2.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/test/passes/3.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/web/json2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/web/jsonlint.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonlint-mod/web/jsonlint.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/CHANGES.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/CONTRIBUTING.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/lib/jsprim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/node_modules/assert-plus/AUTHORS</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/node_modules/assert-plus/CHANGES.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/node_modules/assert-plus/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/node_modules/assert-plus/assert.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/node_modules/assert-plus/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/cli.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/auto-render/README.md</Path>
@@ -11829,19 +12565,31 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/copy-tex/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/copy-tex/copy-tex.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/copy-tex/copy-tex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/copy-tex/copy-tex.webpack.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/copy-tex/index.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/copy-tex/katex2tex.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/mathtex-script-type/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/mathtex-script-type/mathtex-script-type.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/mhchem/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/mhchem/mhchem.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/contrib/mhchem/mhchem.patch</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/coverage/lcov-report/contrib</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/coverage/lcov-report/src</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/auto-render.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/auto-render.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/auto-render.mjs</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/copy-tex.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/copy-tex.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/copy-tex.min.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/copy-tex.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/copy-tex.mjs</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/mathtex-script-type.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/mathtex-script-type.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/mathtex-script-type.mjs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/mhchem.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/mhchem.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/contrib/mhchem.mjs</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_AMS-Regular.ttf</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_AMS-Regular.woff</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_AMS-Regular.woff2</Path>
@@ -11869,6 +12617,9 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_Main-Regular.ttf</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_Main-Regular.woff</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_Main-Regular.woff2</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.woff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_Math-Italic.ttf</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_Math-Italic.woff</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/fonts/KaTeX_Math-Italic.woff2</Path>
@@ -11903,14 +12654,20 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/katex.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/katex.min.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/katex.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/dist/katex.mjs</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/katex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/node_modules/commander/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/node_modules/commander/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/node_modules/commander/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/node_modules/commander/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/node_modules/commander/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/node_modules/commander/typings/index.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/.DS_Store</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/Lexer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/MacroExpander.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/Namespace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/Options.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/ParseError.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/ParseNode.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/Parser.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/Settings.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/SourceLocation.js</Path>
@@ -11930,36 +12687,53 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/accent.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/accentunder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/arrow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/char.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/color.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/cr.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/delimsizing.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/enclose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/environment.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/font.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/genfrac.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/horizBrace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/href.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/htmlmathml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/includegraphics.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/kern.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/lap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/math.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/mathchoice.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/mod.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/mclass.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/op.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/operatorname.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/ordgroup.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/overline.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/phantom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/raisebox.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/rule.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/sizing.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/smash.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/sqrt.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/styling.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/supsub.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/symbolsOp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/symbolsOrd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/symbolsSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/tag.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/text.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/underline.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/functions/verb.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/katex.less</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/macros.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/mathMLTree.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/parseNode.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/parseTree.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/spacingData.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/stretchy.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/svgGeometry.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/symbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/tree.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/types.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/unicodeAccents.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/unicodeMake.js</Path>
@@ -11967,14 +12741,28 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/unicodeSymbols.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/units.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/wide-character.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/submodules/katex-fonts/src</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/kind-of/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/kind-of/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/kind-of/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/klaw/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/klaw/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/klaw/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/klaw/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/klaw/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/klaw/src/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/klaw/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lazy-cache/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lazy-cache/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lazy-cache/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lazy-cache/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lcid/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lcid/lcid.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lcid/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lcid/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lcid/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/COPYING</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/README.md</Path>
@@ -12002,6 +12790,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/node_modules/is-number/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/node_modules/is-number/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/node_modules/is-number/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/node_modules/is-number/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/locate-path/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/locate-path/license</Path>
@@ -12674,6 +13466,14 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.escaperegexp/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.escaperegexp/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.escaperegexp/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.flatten/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.flatten/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.flatten/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.flatten/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.isequal/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.isequal/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.isequal/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.isequal/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.isplainobject/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.isplainobject/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.isplainobject/index.js</Path>
@@ -13604,6 +14404,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/omitBy.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/once.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/orderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/org.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/over.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/overArgs.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/overEvery.js</Path>
@@ -13739,6 +14540,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/zipObject.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/zipObjectDeep.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/zipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/cli.js</Path>
@@ -13747,12 +14549,21 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/loose-envify.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lower-case/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lower-case/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lower-case/lower-case.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lower-case/lower-case.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lower-case/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lowercase-keys/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lowercase-keys/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lowercase-keys/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lowercase-keys/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/node_modules/pify/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/node_modules/pify/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/node_modules/pify/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/node_modules/pify/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-abbr/CHANGELOG.md</Path>
@@ -14019,34 +14830,9 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/lib/insert.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/lib/utils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/example/parse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/readme.markdown</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/all_bool.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/bool.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/dash.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/default_bool.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/dotted.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/kv_short.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/long.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/num.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/parse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/parse_modified.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/short.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/stop_early.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/unknown.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/whitespace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/lib/__tests__/matchAt-test.js</Path>
- <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/material-colors/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/material-colors/.npmignore</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>
@@ -14058,11 +14844,7 @@
<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/.npmignore</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>
@@ -14089,57 +14871,1100 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/info.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.core.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.core.js.map</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.js.map</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/xssi.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_DataView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_Hash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_LazyWrapper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_ListCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_LodashWrapper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_Map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_MapCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_Promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_Set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_SetCache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_Stack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_Symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_Uint8Array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_WeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayFilter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayIncludes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayIncludesWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayLikeKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayPush.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayReduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayReduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arraySample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arraySampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arrayShuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_arraySome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_asciiSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_asciiToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_asciiWords.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_assignMergeValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_assignValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_assocIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseAssign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseAssignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseAssignValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseClamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseConforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseConformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseCreate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseDelay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseDifference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseExtremum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseFill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseFilter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseFindIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseFindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseFlatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseFor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseForOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseForOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseForRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseFunctions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseGetAllKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseGetTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseGt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseHasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseInRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIndexOfWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIntersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseInverter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseInvoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsEqualDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIsTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseIteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseLt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseMatches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseMatchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseMean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseMerge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseMergeDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseNth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseOrderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_basePick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_basePickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_basePropertyDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_basePropertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_basePullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_basePullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseRandom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseReduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSetData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSetToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseShuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseSum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseTimes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseToNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseUnary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseUnset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseUpdate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseWrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseXor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_baseZipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_cacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_castArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_castFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_castPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_castRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_castSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_charsEndIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_charsStartIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_cloneArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_cloneBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_cloneDataView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_cloneRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_cloneSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_cloneTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_compareAscending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_compareMultiple.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_composeArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_composeArgsRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_copyArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_copyObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_copySymbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_copySymbolsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_coreJsData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_countHolders.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createAggregator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createAssigner.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createBaseEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createBaseFor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createBind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createCaseFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createCompounder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createCtor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createCurry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createFind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createFlow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createHybrid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createInverter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createMathOperation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createOver.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createPadding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createPartial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createRecurry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createRelationalOperation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createRound.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_createWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_customDefaultsAssignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_customDefaultsMerge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_customOmitClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_deburrLetter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_defineProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_equalArrays.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_equalByTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_equalObjects.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_escapeHtmlChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_escapeStringChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_flatRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_freeGlobal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getAllKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getAllKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getFuncName.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getHolder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getMapData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getMatchData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getPrototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getRawTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getSymbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getSymbolsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getView.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_getWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_hasPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_hasUnicode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_hasUnicodeWord.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_hashClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_hashDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_hashGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_hashHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_hashSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_initCloneArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_initCloneByTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_initCloneObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_insertWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_isFlattenable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_isIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_isIterateeCall.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_isKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_isKeyable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_isLaziable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_isMaskable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_isMasked.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_isPrototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_isStrictComparable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_iteratorToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_lazyClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_lazyReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_lazyValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_listCacheClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_listCacheDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_listCacheGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_listCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_listCacheSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_mapCacheClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_mapCacheDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_mapCacheGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_mapCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_mapCacheSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_mapToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_matchesStrictComparable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_memoizeCapped.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_mergeData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_metaMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_nativeCreate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_nativeKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_nativeKeysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_nodeUtil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_objectToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_overArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_overRest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_parent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_reEscape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_reEvaluate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_reInterpolate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_realNames.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_reorder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_replaceHolders.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_root.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_safeGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_setCacheAdd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_setCacheHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_setData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_setToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_setToPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_setToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_setWrapToString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_shortOut.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_shuffleSelf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_stackClear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_stackDelete.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_stackGet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_stackHas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_stackSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_strictIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_strictLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_stringSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_stringToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_stringToPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_toKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_toSource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_unescapeHtmlChar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_unicodeSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_unicodeToArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_unicodeWords.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_updateWrapDetails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/_wrapperClone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/add.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/after.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/ary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/assignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/assignInWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/assignWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/attempt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/before.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/bindAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/bindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/camelCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/capitalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/castArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/ceil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/chain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/chunk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/clamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/cloneDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/cloneDeepWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/cloneWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/commit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/compact.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/cond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/conforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/conformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/core.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/countBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/curry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/curryRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/date.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/debounce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/deburr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/defaultTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/defaultsDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/difference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/differenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/differenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/divide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/drop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/dropRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/dropRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/dropWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/eachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/endsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/entriesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/eq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/escapeRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/extend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/extendWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/findIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/findKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/findLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/findLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/findLastKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/first.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/flatMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/flatMapDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/flatMapDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/flatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/flattenDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/flattenDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/flip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/floor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/flow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/flowRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/forEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/forEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/forIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/forInRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/forOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/forOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/F.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/T.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/__.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/_baseConvert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/_convertBrowser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/_falseOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/_mapping.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/_util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/add.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/after.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/allPass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/always.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/any.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/anyPass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/ary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/assignAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/assignAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/assignIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/assignInAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/assignInAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/assignInWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/assignWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/assoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/assocPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/attempt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/before.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/bindAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/bindKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/camelCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/capitalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/castArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/ceil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/chain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/chunk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/clamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/cloneDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/cloneDeepWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/cloneWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/commit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/compact.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/complement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/compose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/cond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/conforms.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/conformsTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/contains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/convert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/countBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/curry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/curryN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/curryRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/curryRightN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/date.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/debounce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/deburr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/defaultTo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/defaultsAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/defaultsDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/defaultsDeepAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/difference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/differenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/differenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/dissoc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/dissocPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/divide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/drop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/dropLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/dropLastWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/dropRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/dropRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/dropWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/eachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/endsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/entriesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/eq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/equals.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/escapeRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/extend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/extendAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/extendAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/extendWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/findFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/findIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/findIndexFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/findKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/findLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/findLastFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/findLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/findLastIndexFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/findLastKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/first.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/flatMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/flatMapDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/flatMapDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/flatten.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/flattenDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/flattenDepth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/flip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/floor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/flow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/flowRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/forEach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/forEachRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/forIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/forInRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/forOwn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/forOwnRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/fromPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/functions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/functionsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/getOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/groupBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/gt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/gte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/hasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/head.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/identical.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/inRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/includesFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/indexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/indexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/indexOfFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/init.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/initial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/intersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/intersectionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/intersectionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/invertBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/invertObj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/invokeArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/invokeArgsMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/invokeMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isArrayLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isBoolean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isEqualWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isMatchWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isNil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isNull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isObjectLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isUndefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isWeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/isWeakSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/iteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/juxt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/kebabCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/keyBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/keysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/lang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/last.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/lastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/lastIndexOfFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/lowerCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/lowerFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/lt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/lte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/mapKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/mapValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/matches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/matchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/maxBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/mean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/meanBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/memoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/mergeAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/mergeAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/mergeWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/methodOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/minBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/multiply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/nAry.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/negate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/next.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/nth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/nthArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/omit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/omitAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/omitBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/orderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/over.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/overArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/overEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/overSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/padChars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/padCharsEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/padCharsStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/padEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/padStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/parseInt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/partialRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/partition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pathEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pathOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/paths.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pickAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pipe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/placeholder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/plant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pluck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/prop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/propEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/propOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/propertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/props.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pullAllBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pullAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/pullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/rangeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/rangeStep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/rangeStepRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/rearg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/reduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/rest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/restFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/result.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/setWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/shuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/snakeCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sortedIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sortedLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sortedLastIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sortedLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sortedUniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/spread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/spreadFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/startCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/startsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/stubArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/stubFalse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/stubObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/stubString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/stubTrue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/subtract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/sumBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/symmetricDifference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/symmetricDifferenceBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/symmetricDifferenceWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/tail.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/take.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/takeLast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/takeLastWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/takeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/takeRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/takeWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/tap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/template.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/templateSettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/throttle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/thru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toJSON.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toLower.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toPairsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/toUpper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/trimChars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/trimCharsEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/trimCharsStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/trimEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/trimStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/truncate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/unapply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/unary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/unescape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/union.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/unionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/unionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/uniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/uniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/uniqWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/uniqueId.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/unnest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/unset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/unzip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/unzipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/update.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/updateWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/upperCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/upperFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/useWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/valueOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/valuesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/where.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/whereEq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/without.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/words.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/wrapperAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/wrapperChain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/wrapperLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/wrapperReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/wrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/xor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/xorBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/xorWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/zip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/zipAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/zipObj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/zipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/zipObjectDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fp/zipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/fromPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/functions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/functionsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/groupBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/gt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/gte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/hasIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/head.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/inRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/indexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/initial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/intersection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/intersectionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/intersectionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/invert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/invertBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/invokeMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isArguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isArrayBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isArrayLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isArrayLikeObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isBoolean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isBuffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isDate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isEqualWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isError.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isMatchWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isNaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isNative.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isNil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isNull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isObjectLike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isRegExp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isSymbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isTypedArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isUndefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isWeakMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/isWeakSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/iteratee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/kebabCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/keyBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/keysIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/lang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/last.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/lastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/lodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/lodash.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/lowerCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/lowerFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/lt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/lte.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/mapKeys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/mapValues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/matches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/matchesProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/maxBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/mean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/meanBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/memoize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/mergeWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/methodOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/minBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/multiply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/negate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/next.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/nth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/nthArg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/omit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/omitBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/orderBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/over.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/overArgs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/overEvery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/overSome.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/padEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/padStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/parseInt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/partialRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/partition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/pick.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/pickBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/plant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/propertyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/pull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/pullAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/pullAllBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/pullAllWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/pullAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/rangeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/rearg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/reduceRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/reject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/rest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/result.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sampleSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/setWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/shuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/snakeCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sortBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sortedIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sortedIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sortedIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sortedLastIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sortedLastIndexBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sortedLastIndexOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sortedUniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sortedUniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/spread.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/startCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/startsWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/stubArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/stubFalse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/stubObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/stubString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/stubTrue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/subtract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/sumBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/tail.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/take.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/takeRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/takeRightWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/takeWhile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/tap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/template.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/templateSettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/throttle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/thru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toFinite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toJSON.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toLower.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toPairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toPairsIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toSafeInteger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/toUpper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/trimEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/trimStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/truncate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/unary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/unescape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/union.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/unionBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/unionWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/uniq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/uniqBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/uniqWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/uniqueId.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/unset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/unzip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/unzipWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/update.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/updateWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/upperCase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/upperFirst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/valueOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/valuesIn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/without.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/words.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/wrapperAt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/wrapperChain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/wrapperLodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/wrapperReverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/wrapperValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/xor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/xorBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/xorWith.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/zip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/zipObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/zipObjectDeep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/node_modules/lodash/zipWith.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/class/classDb.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/class/classDiagram.spec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/class/classRenderer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/class/parser/classDiagram.jison</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/class/parser/classDiagram.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/flowchart/flowDb.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/flowchart/flowRenderer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/flowchart/parser/flow.jison</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/flowchart/parser/flow.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/flowchart/parser/flow.spec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/gantt.spec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/ganttDb.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/ganttDb.spec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/ganttRenderer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/parser/gantt.jison</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/parser/gantt.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/git/gitGraphAst.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/git/gitGraphParser.spec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/git/gitGraphRenderer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/git/parser/gitGraph.jison</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/git/parser/gitGraph.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/parser/sequenceDiagram.jison</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/parser/sequenceDiagram.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/sequenceDb.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/sequenceDiagram.spec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/sequenceRenderer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/svgDraw.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/logger.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/mermaid.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/mermaid.spec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/mermaidAPI.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/mermaidAPI.spec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/class.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/dark/index.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/default/index.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/flowchart.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/forest/index.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/gantt.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/git.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/mermaid.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/neutral/index.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/sequence.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/utils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/utils.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/HISTORY.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/db.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-types/HISTORY.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/ChangeLog</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/HELP.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/bin/minify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/help.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/lib/css.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/lib/html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/lib/img.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/lib/js.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/lib/minify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/debug/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/debug/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/debug/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/debug/dist/debug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/debug/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/debug/src/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/debug/src/common.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/debug/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/debug/src/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/ms/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/ms/license.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/ms/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/node_modules/ms/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minify/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimatch/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimatch/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimatch/minimatch.js</Path>
@@ -14150,13 +15975,19 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/readme.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/all_bool.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/bool.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/dash.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/default_bool.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/dotted.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/kv_short.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/long.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/num.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/parse.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/parse_modified.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/short.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/stop_early.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/unknown.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/whitespace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/README.md</Path>
@@ -14173,6 +16004,20 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/bin/usage.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/examples/pow.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/example/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/readme.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/test/dash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/test/default_bool.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/test/dotted.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/test/long.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/test/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/test/short.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/node_modules/minimist/test/whitespace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/readme.markdown</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/test/chmod.js</Path>
@@ -14190,6 +16035,18 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/test/sync.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/test/umask.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/test/umask_sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mksnapshot/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mksnapshot/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mksnapshot/lib/main.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mksnapshot/lib/mksnapshot-call.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mksnapshot/lib/mksnapshot-path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mksnapshot/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mksnapshot/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment-mini/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment-mini/locale/locale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment-mini/moment.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment-mini/moment.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment-mini/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/README.md</Path>
@@ -14220,7 +16077,6 @@
<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>
@@ -14240,7 +16096,6 @@
<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>
@@ -14252,7 +16107,6 @@
<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>
@@ -14261,7 +16115,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/km.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/kn.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/ko.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/ku.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/ky.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/lb.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/lo.js</Path>
@@ -14460,7 +16313,6 @@
<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>
@@ -14480,7 +16332,6 @@
<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>
@@ -14492,7 +16343,6 @@
<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>
@@ -14501,7 +16351,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/km.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/kn.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/ko.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/ku.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/ky.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/lb.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/lo.js</Path>
@@ -14575,7 +16424,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/mousetrap.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/mousetrap.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/mousetrap.sublime-project</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/bind-dictionary/README.md</Path>
@@ -14593,10 +16441,28 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/record/tests/index.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/record/tests/jelly.css</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/record/tests/jelly.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/chai-1.6.0.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/jquery-1.7.2.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/key-event.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/mocha-1.9.0.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/mocha-1.9.0.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/sinon-1.7.1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/sinon-chai-2.4.0.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/sinon-ie-1.7.1.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/mousetrap.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/test.mousetrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ms/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ms/license.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ms/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ms/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/no-case/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/no-case/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/no-case/no-case.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/no-case/no-case.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/no-case/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/no-case/vendor/camel-case-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/no-case/vendor/camel-case-upper-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/no-case/vendor/non-word-regexp.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-fetch/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-fetch/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-fetch/CHANGELOG.md</Path>
@@ -14676,12 +16542,59 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/local-node-ipc-certs/private/server.key</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/local-node-ipc-certs/server.pub</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node-ipc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/examples/normal-usage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/examples/safe-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/colors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/custom/trap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/custom/zalgo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/extendStringPrototype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/maps/america.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/maps/rainbow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/maps/random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/maps/zebra.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/styles.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/system/has-flag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/lib/system/supports-colors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/safe.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/safe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/node_modules/colors/themes/generic-logging.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-ipc/services/IPC.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-status-codes/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-status-codes/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-status-codes/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-status-codes/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/ansi-styles/ansi-styles.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/ansi-styles/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/ansi-styles/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/chalk/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/chalk/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/chalk/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/chalk/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/strip-ansi/cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/strip-ansi/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/strip-ansi/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/node_modules/strip-ansi/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/nomnom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/num-vals-fix.diff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/test/callback.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/test/commands.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/test/expected.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/test/matching.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/test/option.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/test/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/test/usage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nomnom/test/values.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/number-is-nan/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/number-is-nan/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/number-is-nan/package.json</Path>
@@ -14689,10 +16602,15 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/dist/lint.log</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/dist/nwsapi.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/src/modules/nwsapi-jquery.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/src/modules/nwsapi-traversal.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/src/nwsapi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/oauth-sign/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/oauth-sign/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/oauth-sign/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/oauth-sign/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object-assign/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object-assign/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object-assign/package.json</Path>
@@ -14700,42 +16618,11 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/node_modules/isobject/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/node_modules/isobject/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/node_modules/isobject/index.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/node_modules/isobject/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/node_modules/isobject/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/once/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/once/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/once/once.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/once/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/bool.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/boolean_double.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/boolean_single.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/default_hash.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/default_singles.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/divide.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/line_count.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/line_count_options.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/line_count_wrap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/nonopt.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/reflect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/short.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/usage-options.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/example/xup.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/readme.markdown</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/test/_.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/test/_/argv.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/test/_/bin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/test/parse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/test/short.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/test/usage.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/README.md</Path>
@@ -14752,6 +16639,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/test/idleness.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/test/wrap.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/os-locale/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/os-locale/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/os-locale/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/os-locale/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-limit/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-limit/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-limit/package.json</Path>
@@ -14764,6 +16655,11 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-try/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-try/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-try/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/param-case/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/param-case/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/param-case/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/param-case/param-case.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/param-case/param-case.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse-json/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse-json/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse-json/package.json</Path>
@@ -14825,10 +16721,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/test/scripts/delayed-require.coffee</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/test/scripts/difference.coffee</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/test/scripts/initial-value.coffee</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pify/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pify/license</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pify/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pify/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pinkie-promise/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pinkie-promise/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pinkie-promise/package.json</Path>
@@ -14887,76 +16779,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/v8.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/vm.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/zlib.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/docs/architecture.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/docs/guidelines/plugin.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/docs/guidelines/runner.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/docs/source-maps.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/docs/syntax.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/at-rule.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/comment.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/container.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/css-syntax-error.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/declaration.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/input.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/lazy-result.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/list.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/map-generator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/node.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/parse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/parser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/postcss.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/postcss.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/previous-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/processor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/result.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/root.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/rule.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/stringifier.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/stringify.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/terminal-highlight.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/tokenize.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/vendor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/warn-once.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/warning.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/ansi-styles/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/ansi-styles/license</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/ansi-styles/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/ansi-styles/readme.md</Path>
- <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>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/types/index.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/conversions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/route.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/.eslintrc.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/supports-color/browser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/supports-color/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/supports-color/license</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/supports-color/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/supports-color/readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/README.md</Path>
@@ -14971,6 +16793,24 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prepend-http/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prepend-http/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prepend-http/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/bin-prettier.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/doc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/parser-angular.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/parser-babylon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/parser-flow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/parser-glimmer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/parser-graphql.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/parser-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/parser-markdown.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/parser-postcss.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/parser-typescript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/parser-yaml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/standalone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prettier/third-party.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/process-nextick-args/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/process-nextick-args/license.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/process-nextick-args/package.json</Path>
@@ -15027,13 +16867,25 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/js-tokens/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/js-tokens/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/js-tokens/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/js-tokens/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/js-tokens/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/loose-envify/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/loose-envify/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/loose-envify/cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/loose-envify/custom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/loose-envify/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/loose-envify/loose-envify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/loose-envify/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/node_modules/loose-envify/replace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/prop-types.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/prop-types.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/.eslintignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/data/rules.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/dist/psl.js</Path>
@@ -15045,8 +16897,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/punycode/LICENSE-MIT.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/punycode/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/punycode/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/punycode/punycode.es6.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/punycode/punycode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/query-string/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/query-string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/query-string/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/query-string/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/query-string/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/index.js</Path>
@@ -15060,8 +16916,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/kind-of/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/kind-of/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/.DS_Store</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/.eslintrc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/CONTRIBUTING.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/Gruntfile.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/README.md</Path>
@@ -15083,6 +16939,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/raphael.no-deps.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/raphael.no-deps.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/webpack.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/dist/Autosuggest.js</Path>
@@ -15090,6 +16947,19 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/dist/standalone/autosuggest.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/dist/standalone/autosuggest.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/dist/theme.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/node_modules/prop-types/prop-types.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/README.md</Path>
@@ -15101,9 +16971,23 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/standalone/autowhatever.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/standalone/autowhatever.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/node_modules/prop-types/prop-types.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/.editorconfig</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/HISTORY.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/bower.json</Path>
@@ -15115,6 +16999,341 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/example/src/index.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/gulpfile.js</Path>
<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/node_modules/codemirror/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/CONTRIBUTING.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/comment/comment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/comment/continuecomment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/dialog/dialog.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/dialog/dialog.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/display/autorefresh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/display/fullscreen.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/display/fullscreen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/display/panel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/display/placeholder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/display/rulers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/edit/closebrackets.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/edit/closetag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/edit/continuelist.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/edit/matchbrackets.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/edit/matchtags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/edit/trailingspace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/fold/brace-fold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/fold/comment-fold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/fold/foldcode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/fold/foldgutter.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/fold/foldgutter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/fold/indent-fold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/fold/markdown-fold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/fold/xml-fold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/hint/anyword-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/hint/css-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/hint/html-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/hint/javascript-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/hint/show-hint.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/hint/show-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/hint/sql-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/hint/xml-hint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/lint/coffeescript-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/lint/css-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/lint/html-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/lint/javascript-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/lint/json-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/lint/lint.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/lint/lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/lint/yaml-lint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/merge/merge.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/merge/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/mode/loadmode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/mode/multiplex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/mode/multiplex_test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/mode/overlay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/mode/simple.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/runmode/colorize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/runmode/runmode-standalone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/runmode/runmode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/runmode/runmode.node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/scroll/annotatescrollbar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/scroll/scrollpastend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/scroll/simplescrollbars.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/scroll/simplescrollbars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/search/jump-to-line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/search/match-highlighter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/search/matchesonscrollbar.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/search/matchesonscrollbar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/search/search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/search/searchcursor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/selection/active-line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/selection/mark-selection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/selection/selection-pointer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/tern/tern.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/tern/tern.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/tern/worker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/addon/wrap/hardwrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/keymap/emacs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/keymap/sublime.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/keymap/vim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/lib/codemirror.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/lib/codemirror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/apl/apl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/asciiarmor/asciiarmor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/asn.1/asn.1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/asterisk/asterisk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/brainfuck/brainfuck.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/clike/clike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/clojure/clojure.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/cmake/cmake.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/cobol/cobol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/coffeescript/coffeescript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/commonlisp/commonlisp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/crystal/crystal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/css/css.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/cypher/cypher.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/d/d.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/dart/dart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/diff/diff.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/django/django.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/dockerfile/dockerfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/dtd/dtd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/dylan/dylan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/ebnf/ebnf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/ecl/ecl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/eiffel/eiffel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/elm/elm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/erlang/erlang.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/factor/factor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/fcl/fcl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/forth/forth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/fortran/fortran.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/gas/gas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/gfm/gfm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/gherkin/gherkin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/go/go.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/groovy/groovy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/haml/haml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/handlebars/handlebars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/haskell-literate/haskell-literate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/haskell/haskell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/haxe/haxe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/htmlembedded/htmlembedded.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/htmlmixed/htmlmixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/http/http.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/idl/idl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/javascript/javascript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/jinja2/jinja2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/jsx/jsx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/julia/julia.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/livescript/livescript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/lua/lua.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/markdown/markdown.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/mathematica/mathematica.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/mbox/mbox.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/meta.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/mirc/mirc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/mllike/mllike.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/modelica/modelica.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/mscgen/mscgen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/mumps/mumps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/nginx/nginx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/nsis/nsis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/ntriples/ntriples.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/octave/octave.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/oz/oz.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/pascal/pascal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/pegjs/pegjs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/perl/perl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/php/php.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/pig/pig.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/powershell/powershell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/properties/properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/protobuf/protobuf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/pug/pug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/puppet/puppet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/python/python.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/q/q.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/r/r.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/rpm/changes/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/rpm/rpm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/rst/rst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/ruby/ruby.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/rust/rust.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/sas/sas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/sass/sass.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/scheme/scheme.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/shell/shell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/sieve/sieve.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/slim/slim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/smalltalk/smalltalk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/smarty/smarty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/solr/solr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/soy/soy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/sparql/sparql.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/spreadsheet/spreadsheet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/sql/sql.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/stex/stex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/stylus/stylus.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/swift/swift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/tcl/tcl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/textile/textile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/tiddlywiki/tiddlywiki.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/tiddlywiki/tiddlywiki.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/tiki/tiki.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/tiki/tiki.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/toml/toml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/tornado/tornado.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/troff/troff.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/ttcn-cfg/ttcn-cfg.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/ttcn/ttcn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/turtle/turtle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/twig/twig.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/vb/vb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/vbscript/vbscript.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/velocity/velocity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/verilog/verilog.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/vhdl/vhdl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/vue/vue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/webidl/webidl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/xml/xml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/xquery/xquery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/yacas/yacas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/yaml/yaml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/mode/z80/z80.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/codemirror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/Display.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/focus.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/gutters.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/highlight_worker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/line_numbers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/mode_state.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/operations.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/scroll_events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/scrollbars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/scrolling.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/selection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/update_display.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/update_line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/update_lines.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/display/view_tracking.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/CodeMirror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/commands.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/deleteNearSelection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/drop_events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/fromTextArea.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/global_events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/key_events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/legacy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/main.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/methods.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/mouse_events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/options.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/edit/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/input/ContentEditableInput.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/input/TextareaInput.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/input/indent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/input/input.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/input/keymap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/input/keynames.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/input/movement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/line/highlight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/line/line_data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/line/pos.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/line/saw_special_spans.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/line/spans.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/line/utils_line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/measurement/position_measurement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/measurement/widgets.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/model/Doc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/model/change_measurement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/model/changes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/model/chunk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/model/document_data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/model/history.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/model/line_widget.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/model/mark_text.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/model/selection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/model/selection_updates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/modes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/util/StringStream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/util/bidi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/util/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/util/dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/util/event.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/util/feature_detection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/util/misc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/src/util/operation_group.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/3024-day.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/3024-night.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/abcdef.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/ambiance-mobile.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/ambiance.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/base16-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/base16-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/bespin.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/blackboard.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/cobalt.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/colorforth.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/darcula.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/dracula.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/duotone-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/duotone-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/eclipse.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/elegant.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/erlang-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/gruvbox-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/hopscotch.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/icecoder.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/idea.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/isotope.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/lesser-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/liquibyte.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/lucario.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/material.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/mbo.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/mdn-like.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/midnight.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/monokai.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/neat.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/neo.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/night.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/oceanic-next.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/panda-syntax.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/paraiso-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/paraiso-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/pastel-on-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/railscasts.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/rubyblue.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/seti.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/shadowfox.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/solarized.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/ssms.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/the-matrix.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/tomorrow-night-bright.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/tomorrow-night-eighties.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/ttcn.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/twilight.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/vibrant-ink.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/xq-dark.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/xq-light.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/yeti.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/codemirror/theme/zenburn.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/node_modules/prop-types/prop-types.min.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>
@@ -15209,190 +17428,130 @@
<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/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-color/node_modules/prop-types/prop-types.min.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-composition-input/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/lib/inputfield.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/node_modules/prop-types/prop-types.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-composition-input/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>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-debounce-render/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/dist/react-dom-server.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/dist/react-dom-server.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/dist/react-dom.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/dist/react-dom.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/build-info.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-server.browser.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-server.browser.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-server.node.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-server.node.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-test-utils.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-test-utils.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-unstable-fire.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-unstable-fire.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-unstable-fire.profiling.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-unstable-fizz.browser.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-unstable-fizz.browser.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-unstable-fizz.node.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-unstable-fizz.node.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-unstable-native-dependencies.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom-unstable-native-dependencies.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/cjs/react-dom.profiling.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ARIADOMPropertyConfig.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/AutoFocusUtils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/BeforeInputEventPlugin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/CSSProperty.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/CSSPropertyOperations.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/CallbackQueue.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ChangeEventPlugin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/DOMChildrenOperations.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/DOMLazyTree.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/DOMNamespaces.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/DOMProperty.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/DOMPropertyOperations.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/Danger.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/DefaultEventPluginOrder.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/EnterLeaveEventPlugin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/EventConstants.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/EventPluginHub.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/EventPluginRegistry.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/EventPluginUtils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/EventPropagators.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/FallbackCompositionState.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/HTMLDOMPropertyConfig.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/KeyEscapeUtils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/LinkedValueUtils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/PluginModuleType.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/PooledClass.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactBrowserEventEmitter.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactChildFiber.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactChildReconciler.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactComponentBrowserEnvironment.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactComponentEnvironment.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactComponentTreeTestUtils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactCompositeComponent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactCoroutine.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOM.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMComponent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMComponentFlags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMComponentTree.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMContainerInfo.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMEmptyComponent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMFeatureFlags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMFiber.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMIDOperations.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMInput.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMInvalidARIAHook.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMNullInputValuePropHook.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMOption.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMSelect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMSelection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMServer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMServerUMDEntry.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMTextComponent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMTextarea.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMTreeTraversal.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMUMDEntry.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDOMUnknownPropertyHook.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDebugTool.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDefaultBatchingStrategy.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactDefaultInjection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactElementSymbol.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactEmptyComponent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactErrorUtils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactEventEmitterMixin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactEventListener.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactFeatureFlags.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactFiber.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactFiberBeginWork.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactFiberCommitWork.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactFiberCompleteWork.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactFiberReconciler.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactFiberRoot.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactFiberScheduler.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactFiberUpdateQueue.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactHostComponent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactHostOperationHistoryHook.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactInjection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactInputSelection.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactInstanceMap.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactInstanceType.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactInstrumentation.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactInvalidSetStateWarningHook.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactMarkupChecksum.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactMount.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactMultiChild.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactMultiChildUpdateTypes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactNodeTypes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactOwner.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactPerf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactPriorityLevel.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactPropTypeLocationNames.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactPropTypeLocations.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactPropTypesSecret.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactReconcileTransaction.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactReconciler.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactRef.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactReifiedYield.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactServerBatchingStrategy.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactServerRendering.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactServerRenderingTransaction.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactServerUpdateQueue.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactShallowRenderer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactSimpleEmptyComponent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactSyntheticEventType.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactTestReconcileTransaction.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactTestUtils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactTypeOfWork.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactTypes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactUpdateQueue.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactUpdates.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ReactVersion.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ResponderEventPlugin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ResponderSyntheticEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ResponderTouchHistoryStore.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SVGDOMPropertyConfig.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SelectEventPlugin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SimpleEventPlugin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticAnimationEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticClipboardEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticCompositionEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticDragEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticFocusEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticInputEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticKeyboardEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticMouseEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticTouchEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticTransitionEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticUIEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/SyntheticWheelEvent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/TapEventPlugin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/TouchHistoryMath.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/Transaction.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/ViewportMetrics.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/accumulate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/accumulateInto.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/adler32.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/canDefineProperty.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/checkReactTypeSpec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/createMicrosoftUnsafeLocalFunction.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/dangerousStyleValue.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/deprecated.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/escapeTextContentForBrowser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/findDOMNode.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/flattenChildren.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/forEachAccumulated.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/getEventCharCode.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/getEventKey.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/getEventModifierState.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/getEventTarget.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/getHostComponentFromComposite.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/getIteratorFn.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/getNodeForCharacterOffset.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/getTestDocument.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/getTextContentAccessor.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/getVendorPrefixedEventName.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/inputValueTracking.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/instantiateReactComponent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/isEventSupported.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/isTextInputElement.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/lowPriorityWarning.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/quoteAttributeValueForBrowser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/reactComponentExpect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/reactProdInvariant.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/renderSubtreeIntoContainer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/setInnerHTML.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/setTextContent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/shouldUpdateReactComponent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/traverseAllChildren.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/lib/validateDOMNesting.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/node_modules/prop-types/prop-types.min.js</Path>
<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/profiling.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/server.browser.js</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/server.node.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-dom/umd/react-dom-server.browser.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom-server.browser.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom-test-utils.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom-test-utils.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom-unstable-fire.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom-unstable-fire.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom-unstable-fire.profiling.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom-unstable-fizz.browser.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom-unstable-fizz.browser.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom-unstable-native-dependencies.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom-unstable-native-dependencies.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/umd/react-dom.profiling.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/unstable-fizz.browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/unstable-fizz.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/unstable-fizz.node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/unstable-native-dependencies.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/.circleci/config.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/.eslintignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/data/aliases.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/data/asciiAliases.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/data/raw.htm</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/lib/asciiRegex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/lib/normalizeProtocol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/lib/renderer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/lib/unicodeToCodepoint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/node_modules/prop-types/prop-types.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-emoji-render/scripts/parse-aliases.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>
@@ -15464,21 +17623,1287 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/dist/react-redux.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/dist/react-redux.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/alternate-renderers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/components/Context.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/components/Provider.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/components/connectAdvanced.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/connect/connect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/connect/mapDispatchToProps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/connect/mapStateToProps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/connect/mergeProps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/connect/selectorFactory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/connect/verifySubselectors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/connect/wrapMapToProps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/utils/Subscription.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/utils/batch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/utils/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/utils/reactBatchedUpdates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/utils/reactBatchedUpdates.native.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/utils/shallowEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/utils/verifyPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/utils/warning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/es/utils/wrapActionCreators.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/alternate-renderers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/components/Context.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/components/Provider.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/components/connect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/components/connectAdvanced.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/connect/connect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/connect/mapDispatchToProps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/connect/mapStateToProps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/connect/mergeProps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/connect/selectorFactory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/connect/verifySubselectors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/connect/wrapMapToProps.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/utils/Subscription.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/utils/batch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/utils/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/utils/reactBatchedUpdates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/utils/reactBatchedUpdates.native.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/utils/shallowEqual.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/utils/storeShape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/utils/verifyPlainObject.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/utils/warning.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/lib/utils/wrapActionCreators.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/js-tokens/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/js-tokens/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/js-tokens/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/js-tokens/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/js-tokens/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/loose-envify/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/loose-envify/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/loose-envify/cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/loose-envify/custom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/loose-envify/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/loose-envify/loose-envify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/loose-envify/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/node_modules/loose-envify/replace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/alternate-renderers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/components/Context.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/components/Provider.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/components/connect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/components/connectAdvanced.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/connect/connect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/connect/mapDispatchToProps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/connect/mapStateToProps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/connect/mergeProps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/connect/selectorFactory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/connect/verifySubselectors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/connect/wrapMapToProps.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/utils/Subscription.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/utils/batch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/utils/isPlainObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/utils/reactBatchedUpdates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/utils/reactBatchedUpdates.native.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/utils/shallowEqual.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/utils/storeShape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/utils/verifyPlainObject.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/utils/warning.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-redux/src/utils/wrapActionCreators.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/BrowserRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/HashRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/Link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/MemoryRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/NavLink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/Prompt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/Redirect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/Route.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/Router.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/StaticRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/Switch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/cjs/react-router-dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/cjs/react-router-dom.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/BrowserRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/HashRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/Link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/MemoryRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/NavLink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/Prompt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/Redirect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/Route.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/Router.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/StaticRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/Switch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/generatePath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/matchPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/warnAboutDeprecatedESMImport.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/es/withRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/esm/react-router-dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/generatePath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/matchPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/node_modules/prop-types/prop-types.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/umd/react-router-dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/umd/react-router-dom.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/warnAboutDeprecatedCJSRequire.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router-dom/withRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/MemoryRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/Prompt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/Redirect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/Route.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/Router.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/StaticRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/Switch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/cjs/react-router.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/cjs/react-router.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/MemoryRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/Prompt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/Redirect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/Route.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/Router.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/StaticRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/Switch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/generatePath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/matchPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/warnAboutDeprecatedESMImport.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/es/withRouter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/esm/react-router.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/generatePath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/matchPath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/Gruntfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/build/Gruntfile.ls</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/build/build.ls</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/build/config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/build/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/client/core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/client/core.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/client/core.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/client/library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/client/library.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/client/library.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/client/shim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/client/shim.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/client/shim.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/core/_.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/core/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/core/dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/core/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/core/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/core/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/core/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/core/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/core/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es5/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/reflect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es6/weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es7/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es7/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es7/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es7/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es7/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es7/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/es7/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/_.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/find-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/for-each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/last-index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/pop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/push.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/reduce-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/shift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/splice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/unshift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/array/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/clear-immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/function/has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/function/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/function/name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/function/part.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/get-iterator-method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/get-iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/html-collection/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/html-collection/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/is-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/json/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/acosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/asinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/atanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/cbrt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/clz32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/cosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/hypot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/imul.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/log10.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/log2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/sinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/tanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/math/trunc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/node-list/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/node-list/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/epsilon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/is-finite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/is-nan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/is-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/max-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/min-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/number/parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/define-properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/freeze.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/get-own-property-descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/get-own-property-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/get-own-property-symbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/is-frozen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/is-sealed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/make.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/seal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/object/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/delete-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/reflect/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/regexp/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/regexp/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/set-immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/set-interval.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/set-timeout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/code-point-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/from-code-point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/pad-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/raw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/trim-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/string/unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/for.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/is-concat-spreadable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/key-for.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/to-string-tag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/symbol/unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/fn/weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/js/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/js/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/core/_.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/core/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/core/dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/core/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/core/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/core/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/core/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/core/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/core/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es5/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/reflect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es6/weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es7/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es7/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es7/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es7/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es7/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es7/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/es7/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/_.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/concat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/every.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/find-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/for-each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/join.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/last-index-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/pop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/push.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/reduce-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/reduce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/shift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/some.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/splice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/unshift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/array/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/clear-immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/function/has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/function/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/function/name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/function/part.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/get-iterator-method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/get-iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/html-collection/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/html-collection/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/is-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/json/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/acosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/asinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/atanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/cbrt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/clz32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/cosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/hypot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/imul.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/log10.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/log2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/sinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/tanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/math/trunc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/node-list/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/node-list/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/epsilon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/is-finite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/is-nan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/is-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/max-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/min-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/number/parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/define-properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/freeze.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/get-own-property-descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/get-own-property-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/get-own-property-symbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/is-frozen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/is-sealed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/make.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/seal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/object/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/delete-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/reflect/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/regexp/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/regexp/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/set-immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/set-interval.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/set-timeout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/code-point-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/from-code-point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/pad-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/raw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/trim-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/string/unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/for.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/is-concat-spreadable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/key-for.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/to-string-tag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/symbol/unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/fn/weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/js/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/js/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.a-function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.an-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.array-copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.array-fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.array-includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.array-methods.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.array-species-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.cof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.collection-strong.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.collection-to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.collection-weak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.ctx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.defined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.dom-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.enum-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.export.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.fails-is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.fails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.fix-re-wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.for-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.get-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.hide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.is-array-iter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.is-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.iter-call.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.iter-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.iter-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.iter-detect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.iter-step.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.iterators.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.keyof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.math-expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.math-log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.math-sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.microtask.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.object-assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.object-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.object-sap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.object-to-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.property-desc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.redefine-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.replacer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.same-value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.set-proto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.set-species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.set-to-string-tag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.shared.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.species-constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.strict-new.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.string-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.string-context.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.string-pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.string-repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.string-trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.task.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.to-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.to-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.to-iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.to-length.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.to-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.typed-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.typed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.uid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/$.wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.function.part.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.get-iterator-method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.get-iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.is-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.number.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.object.classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.object.define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.object.is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.object.make.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.string.escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/core.string.unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es5.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.array.copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.array.fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.array.find-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.array.find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.array.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.array.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.array.of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.array.species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.date.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.function.has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.function.name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.acosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.asinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.atanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.cbrt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.clz32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.cosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.hypot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.imul.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.log10.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.log2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.sinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.tanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.math.trunc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.number.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.number.epsilon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.number.is-finite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.number.is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.number.is-nan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.number.is-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.number.max-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.number.min-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.number.parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.number.parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.freeze.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.get-own-property-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.is-frozen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.is-sealed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.seal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.object.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.delete-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.reflect.set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.regexp.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.regexp.flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.regexp.match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.regexp.replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.regexp.search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.regexp.split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.string.code-point-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.string.ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.string.from-code-point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.string.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.string.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.string.raw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.string.repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.string.starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.string.trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.array-buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.data-view.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.float32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.float64-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.int16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.int32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.int8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.uint16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.uint32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.uint8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.typed.uint8-clamped-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es6.weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.array.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.map.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.object.entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.object.get-own-property-descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.object.values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.regexp.escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.set.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.string.at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.string.pad-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.string.pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.string.trim-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/es7.string.trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/js.array.statics.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/web.dom.iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/web.immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/modules/web.timers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/shim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/web/dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/web/immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/web/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/library/web/timers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.a-function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.an-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.array-copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.array-fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.array-includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.array-methods.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.array-species-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.cof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.collection-strong.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.collection-to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.collection-weak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.ctx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.defined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.dom-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.enum-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.export.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.fails-is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.fails.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.fix-re-wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.for-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.get-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.global.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.hide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.invoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.is-array-iter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.is-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.is-regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.iter-call.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.iter-create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.iter-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.iter-detect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.iter-step.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.iterators.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.keyof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.math-expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.math-log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.math-sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.microtask.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.object-assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.object-define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.object-sap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.object-to-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.partial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.property-desc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.redefine-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.replacer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.same-value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.set-proto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.set-species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.set-to-string-tag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.shared.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.species-constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.strict-new.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.string-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.string-context.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.string-pad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.string-repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.string-trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.task.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.to-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.to-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.to-iobject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.to-length.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.to-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.to-primitive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.typed-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.typed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.uid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/$.wks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.dict.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.function.part.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.get-iterator-method.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.get-iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.is-iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.number.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.object.classof.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.object.define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.object.is-object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.object.make.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.string.escape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/core.string.unescape-html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es5.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.array.copy-within.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.array.fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.array.find-index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.array.find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.array.from.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.array.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.array.of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.array.species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.date.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.function.has-instance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.function.name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.acosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.asinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.atanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.cbrt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.clz32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.cosh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.expm1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.fround.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.hypot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.imul.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.log10.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.log1p.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.log2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.sign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.sinh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.tanh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.math.trunc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.number.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.number.epsilon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.number.is-finite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.number.is-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.number.is-nan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.number.is-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.number.max-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.number.min-safe-integer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.number.parse-float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.number.parse-int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.freeze.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.get-own-property-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.is-frozen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.is-sealed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.is.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.seal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.object.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.apply.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.construct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.define-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.delete-property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.get-own-property-descriptor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.get-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.get.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.has.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.is-extensible.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.own-keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.prevent-extensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.set-prototype-of.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.reflect.set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.regexp.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.regexp.flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.regexp.match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.regexp.replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.regexp.search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.regexp.split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.string.code-point-at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.string.ends-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.string.from-code-point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.string.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.string.iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.string.raw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.string.repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.string.starts-with.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.string.trim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.array-buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.data-view.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.float32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.float64-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.int16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.int32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.int8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.uint16-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.uint32-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.uint8-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.typed.uint8-clamped-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.weak-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es6.weak-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.array.includes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.map.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.object.entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.object.get-own-property-descriptors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.object.values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.regexp.escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.set.to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.string.at.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.string.pad-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.string.pad-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.string.trim-left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/es7.string.trim-right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/js.array.statics.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/$.add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/$.collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/$.export.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/$.library.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/$.path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/$.redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/$.set-species.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/es6.date.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/es6.function.name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/es6.number.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/es6.object.to-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/es6.regexp.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/es6.regexp.flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/es6.regexp.match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/es6.regexp.replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/es6.regexp.search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/es6.regexp.split.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/library/web.dom.iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/web.dom.iterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/web.immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/modules/web.timers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/shim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/web/dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/web/immediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/web/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/core-js/web/timers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/create-react-context/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/create-react-context/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/create-react-context/lib/implementation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/create-react-context/lib/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/create-react-context/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/create-react-context/lib/index.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/create-react-context/lib/maxSigned31BitInt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/create-react-context/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/flow/lib/dev.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/CSSCore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/CSSCore.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/DataTransfer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/DataTransfer.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Deferred.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Deferred.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/ErrorUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/ErrorUtils.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/EventListener.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/EventListener.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/ExecutionEnvironment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/ExecutionEnvironment.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Keys.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Map.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/PhotosMimeType.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/PhotosMimeType.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Promise.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Promise.native.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Promise.native.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/PromiseMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/PromiseMap.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Scroll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Scroll.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Set.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Style.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/Style.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/TokenizeUtil.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/TokenizeUtil.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/TouchEventUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/TouchEventUtils.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/URI.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/URI.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeBidi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeBidi.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeBidiDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeBidiDirection.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeBidiService.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeBidiService.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeCJK.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeCJK.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeHangulKorean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeHangulKorean.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeUtils.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeUtilsExtra.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UnicodeUtilsExtra.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UserAgent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UserAgent.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UserAgentData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/UserAgentData.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/VersionRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/VersionRange.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/__mocks__/ErrorUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/__mocks__/base62.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/__mocks__/crc32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/__mocks__/fetch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/__mocks__/fetchWithRetries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/__mocks__/nullthrows.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/_shouldPolyfillES6Collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/_shouldPolyfillES6Collection.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/areEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/areEqual.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/base62.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/base62.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/camelize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/camelize.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/camelizeStyleName.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/camelizeStyleName.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/compactArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/compactArray.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/concatAllArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/concatAllArray.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/containsNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/containsNode.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/countDistinct.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/countDistinct.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/crc32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/crc32.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/createArrayFromMixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/createArrayFromMixed.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/createNodesFromMarkup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/createNodesFromMarkup.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/cx.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/cx.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/distinctArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/distinctArray.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/emptyFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/emptyFunction.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/emptyObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/emptyObject.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/enumerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/enumerate.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/equalsIterable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/equalsIterable.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/equalsSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/equalsSet.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/everyObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/everyObject.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/everySet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/everySet.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/fetch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/fetch.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/fetchWithRetries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/fetchWithRetries.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/filterObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/filterObject.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/flatMapArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/flatMapArray.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/flattenArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/flattenArray.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/focusNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/focusNode.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/forEachObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/forEachObject.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getActiveElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getActiveElement.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getDocumentScrollElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getDocumentScrollElement.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getElementPosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getElementPosition.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getElementRect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getElementRect.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getMarkupWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getMarkupWrap.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getScrollPosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getScrollPosition.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getStyleProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getStyleProperty.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getUnboundedScrollPosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getUnboundedScrollPosition.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getViewportDimensions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/getViewportDimensions.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/groupArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/groupArray.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/hyphenate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/hyphenate.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/hyphenateStyleName.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/hyphenateStyleName.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/invariant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/invariant.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/isEmpty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/isEmpty.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/isNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/isNode.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/isTextNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/isTextNode.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/joinClasses.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/joinClasses.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/keyMirror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/keyMirror.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/keyMirrorRecursive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/keyMirrorRecursive.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/keyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/keyOf.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/mapObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/mapObject.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/maxBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/maxBy.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/memoizeStringOnly.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/memoizeStringOnly.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/minBy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/minBy.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/monitorCodeUse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/monitorCodeUse.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/nativeRequestAnimationFrame.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/nativeRequestAnimationFrame.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/nullthrows.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/nullthrows.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/partitionArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/partitionArray.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/partitionObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/partitionObject.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/partitionObjectByKey.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/partitionObjectByKey.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/performance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/performance.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/performanceNow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/performanceNow.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/removeFromArray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/removeFromArray.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/requestAnimationFrame.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/requestAnimationFrame.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/resolveImmediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/resolveImmediate.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/setImmediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/setImmediate.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/shallowEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/shallowEqual.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/someObject.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/someObject.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/someSet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/someSet.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/sprintf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/sprintf.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/warning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/warning.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/xhrSimpleDataSerializer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/lib/xhrSimpleDataSerializer.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/module-map.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/fbjs/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/isarray/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/isarray/build/build.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/isarray/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/isarray/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/isarray/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/path-to-regexp/History.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/path-to-regexp/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/path-to-regexp/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/path-to-regexp/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/path-to-regexp/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/path-to-regexp/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/prop-types/prop-types.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/dist/ua-parser.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/dist/ua-parser.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/dist/ua-parser.pack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/license.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/package.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/src/ua-parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/test/browser-test.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/test/cpu-test.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/test/device-test.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/test/engine-test.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/test/mediaplayer-test.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/test/os-test.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/node_modules/ua-parser-js/test/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/umd/react-router.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/umd/react-router.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/warnAboutDeprecatedCJSRequire.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-router/withRouter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/README.md</Path>
@@ -15502,6 +18927,19 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/examples/infinite-list.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/examples/virtual-list.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/examples/virtual-table-columns.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/node_modules/prop-types/prop-types.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/.editorconfig</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/.npmignore</Path>
@@ -15530,73 +18968,73 @@
<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/dist/react-transition-group.min.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/node_modules/js-tokens/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/js-tokens/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/js-tokens/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/js-tokens/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/js-tokens/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/loose-envify/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/loose-envify/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/loose-envify/cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/loose-envify/custom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/loose-envify/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/loose-envify/loose-envify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/loose-envify/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/loose-envify/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/js-tokens/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/js-tokens/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/js-tokens/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/js-tokens/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/js-tokens/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/loose-envify/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/loose-envify/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/loose-envify/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/loose-envify/cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/loose-envify/custom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/loose-envify/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/loose-envify/loose-envify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/loose-envify/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/node_modules/loose-envify/replace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-transition-group/node_modules/prop-types/prop-types.min.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/umd.js</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>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/dist/react-with-addons.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/dist/react.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/dist/react.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/KeyEscapeUtils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/LinkedStateMixin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/PooledClass.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/React.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactAddonsDOMDependencies.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactAddonsDOMDependenciesUMDShim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactBaseClasses.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactCSSTransitionGroup.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactCSSTransitionGroupChild.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactChildren.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactComponentTreeDevtool.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactComponentTreeHook.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactComponentTreeHookUMDShim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactComponentWithPureRenderMixin.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactCurrentOwner.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactCurrentOwnerUMDShim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactDOMFactories.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactElement.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactElementSymbol.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactElementType.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactElementValidator.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactFragment.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactLink.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactNoopUpdateQueue.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactPropTypeLocationNames.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactPropTypeLocations.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactPropTypes.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactPropTypesSecret.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactStateSetters.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactTransitionChildMapping.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactTransitionEvents.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactTransitionGroup.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactUMDEntry.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactUMDShim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactVersion.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactWithAddons.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/ReactWithAddonsUMDEntry.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/canDefineProperty.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/checkReactTypeSpec.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/createClass.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/deprecated.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/flattenChildren.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/getIteratorFn.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/getNextDebugID.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/getNextDebugIDUMDShim.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/lowPriorityWarning.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/onlyChild.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/reactProdInvariant.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/shallowCompare.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/sliceChildren.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/lib/traverseAllChildren.js</Path>
- <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/build-info.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/cjs/react.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/cjs/react.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/checkPropTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/factory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/factoryWithThrowingShims.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/factoryWithTypeCheckers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/lib/ReactPropTypesSecret.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/prop-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/node_modules/prop-types/prop-types.min.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/react/umd/react.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/umd/react.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/umd/react.profiling.min.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>
@@ -15626,6 +19064,11 @@
<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>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/read-all-stream/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/read-pkg-up/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/read-pkg-up/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/read-pkg-up/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/read-pkg-up/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/read-pkg-up/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/CONTRIBUTING.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/GOVERNANCE.md</Path>
@@ -15643,6 +19086,11 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/lib/internal/streams/destroy.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/lib/internal/streams/stream-browser.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/lib/internal/streams/stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/node_modules/string_decoder/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/node_modules/string_decoder/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/node_modules/string_decoder/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/node_modules/string_decoder/lib/string_decoder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/node_modules/string_decoder/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/passthrough.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/readable-browser.js</Path>
@@ -15670,6 +19118,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/redux/lib/createStore.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/redux/lib/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/redux/lib/utils/warning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/redux/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/redux/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/redux/src/applyMiddleware.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/redux/src/bindActionCreators.js</Path>
@@ -15683,12 +19132,32 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/regenerator-runtime/path.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/regenerator-runtime/runtime-module.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/regenerator-runtime/runtime.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/constants.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/options.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/parse/host.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/parse/hrefInfo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/parse/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/parse/path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/parse/port.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/parse/query.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/parse/urlstring.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/relate/absolutize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/relate/findRelation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/relate/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/relate/relativize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/util/devlog.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/util/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/lib/util/path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/relateurl/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.editorconfig</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.eslintignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.eslintrc.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.github/contributing.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.nojekyll</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/LICENSE</Path>
@@ -15843,6 +19312,16 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/help/formatter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/namespace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore.string/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore.string/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore.string/README.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore.string/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore.string/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore.string/foo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore.string/gulpfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore.string/lib/underscore.string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore.string/libpeerconnection.log</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore.string/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore/package.json</Path>
@@ -15883,6 +19362,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-string/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-string/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-string/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/configure/request-next.js</Path>
@@ -15896,17 +19376,62 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/errors.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/lib/rp.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/node_modules/tough-cookie/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/node_modules/tough-cookie/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/node_modules/tough-cookie/lib/cookie.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/node_modules/tough-cookie/lib/memstore.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/node_modules/tough-cookie/lib/pathMatch.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/node_modules/tough-cookie/lib/permuteDomain.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/node_modules/tough-cookie/lib/pubsuffix-psl.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/node_modules/tough-cookie/lib/store.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/node_modules/tough-cookie/lib/version.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/node_modules/tough-cookie/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/auth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/cookies.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/getProxyFromURI.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/har.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/hawk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/helpers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/multipart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/oauth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/querystring.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/redirect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/lib/tunnel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/.eslintignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/dist/qs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/lib/formats.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/lib/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/lib/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/test/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/test/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/test/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/test/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/node_modules/qs/test/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request/request.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-directory/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-directory/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-directory/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-directory/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-directory/README.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-directory/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-directory/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-main-filename/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-main-filename/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-main-filename/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-main-filename/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-main-filename/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-main-filename/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/require-main-filename/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/resolve-pathname/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/resolve-pathname/cjs/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/resolve-pathname/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/resolve-pathname/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/resolve-pathname/umd/resolve-pathname.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/resolve-pathname/umd/resolve-pathname.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rimraf/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rimraf/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rimraf/bin.js</Path>
@@ -15958,6 +19483,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/dist/sander.es.js.map</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/dist/sander.es6.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/dist/sander.es6.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/src/extraMethods/copyFile.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/src/extraMethods/copydir.js</Path>
@@ -15976,62 +19502,114 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/src/specialMethods/writeFile-appendFile.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/src/utils/resolvePath.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/src/utils/resolvePathAndOptions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/Makefile</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/dist/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/dist/sanitize-html.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/dist/sanitize-html.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/ansi-styles/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/ansi-styles/license</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/ansi-styles/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/ansi-styles/readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/index.js.flow</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/license</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/templates.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/types/index.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/conversions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/route.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/.eslintrc.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/logos/logo-box-builtby.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/logos/logo-box-madefor.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/has-flag/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/has-flag/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/has-flag/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/has-flag/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/CONTRIBUTING.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/README-cn.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/docs/architecture.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/docs/guidelines/plugin.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/docs/guidelines/runner.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/docs/source-maps.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/docs/syntax.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/gulpfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/at-rule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/comment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/container.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/css-syntax-error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/declaration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/input.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/lazy-result.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/list.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/map-generator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/postcss.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/postcss.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/previous-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/processor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/result.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/root.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/rule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/stringifier.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/terminal-highlight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/tokenize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/vendor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/warn-once.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/lib/warning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/postcss/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/supports-color/browser.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/supports-color/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/supports-color/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/supports-color/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/supports-color/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/test/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sax/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sax/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sax/lib/sax.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sax/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/build-info.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/cjs/scheduler-tracing.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/cjs/scheduler-tracing.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/cjs/scheduler-tracing.profiling.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/cjs/scheduler.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/cjs/scheduler.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/tracing-profiling.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/tracing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/umd/scheduler-tracing.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/umd/scheduler-tracing.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/umd/scheduler-tracing.profiling.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/umd/scheduler.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/umd/scheduler.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scheduler/umd/scheduler.profiling.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scope-css/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scope-css/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scope-css/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scope-css/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/seamless-immutable/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/seamless-immutable/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/seamless-immutable/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/seamless-immutable/seamless-immutable.development.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/seamless-immutable/seamless-immutable.development.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/seamless-immutable/seamless-immutable.production.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/seamless-immutable/src/seamless-immutable.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/section-iterator/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/section-iterator/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/section-iterator/dist/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/section-iterator/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/bin/semver</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/range.bnf</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/semver.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-blocking/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-blocking/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-blocking/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-blocking/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-blocking/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-getter/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-getter/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-getter/index.js</Path>
@@ -16052,9 +19630,9 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/signal-exit/signals.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/index.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/slugify.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/slugify.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/README.md</Path>
@@ -16075,18 +19653,32 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/source-map.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/source-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/CONTRIBUTORS.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/split-on-first/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/split-on-first/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/split-on-first/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/split-on-first/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/split-on-first/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/.gitattributes</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/demo/angular.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/angular-sprintf.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/angular-sprintf.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/angular-sprintf.min.map</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/sprintf.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/sprintf.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/sprintf.min.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/gruntfile.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/src/angular-sprintf.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/src/sprintf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/test/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf/lib/sprintf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf/test/function-export.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/srcset/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/srcset/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/srcset/package.json</Path>
@@ -16110,7 +19702,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/pem.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/pkcs1.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/pkcs8.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/putty.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/rfc4253.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/ssh-private.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/ssh.js</Path>
@@ -16126,31 +19717,22 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/man/man1/sshpk-conv.1</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/man/man1/sshpk-sign.1</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/man/man1/sshpk-verify.1</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/ber/errors.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/ber/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/ber/reader.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/ber/types.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/ber/writer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/assert-plus/AUTHORS</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/assert-plus/CHANGES.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/assert-plus/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/assert-plus/assert.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/assert-plus/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/stealthy-require/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/stealthy-require/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/stealthy-require/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/stealthy-require/lib/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/stealthy-require/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string_decoder/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string_decoder/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string_decoder/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string_decoder/lib/string_decoder.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string_decoder/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strict-uri-encode/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strict-uri-encode/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strict-uri-encode/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strict-uri-encode/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string-replace-to-array/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string-replace-to-array/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string-replace-to-array/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string-replace-to-array/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string-replace-to-array/string-replace-to-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string-replace-to-array/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-color/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-color/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-color/index.js</Path>
@@ -16188,10 +19770,69 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-tree/lib/TreeIterator.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-tree/lib/TreePosition.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-tree/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/examples/grepcount.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/examples/pdfcreator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/lib/temp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/no_cleanup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/no_cleanup_on_exit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/no_cleanup_on_exit.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/temp/test/temp-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/PATRONS.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/bin/terser</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/bin/uglifyjs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/dist/.gitkeep</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/dist/bundle.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/dist/bundle.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/commander/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/commander/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/commander/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/commander/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/commander/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/commander/typings/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/source-map-support/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/source-map-support/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/source-map-support/browser-source-map-support.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/source-map-support/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/source-map-support/register.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/node_modules/source-map-support/source-map-support.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/tools/colorless-console.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/tools/domprops.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/tools/exit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/tools/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/tools/props.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/terser/tools/terser.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/timed-out/index.js</Path>
<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/tiny-invariant/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-invariant/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-invariant/dist/tiny-invariant.cjs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-invariant/dist/tiny-invariant.cjs.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-invariant/dist/tiny-invariant.esm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-invariant/dist/tiny-invariant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-invariant/dist/tiny-invariant.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-invariant/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-invariant/src/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-invariant/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-warning/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-warning/dist/tiny-warning.cjs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-warning/dist/tiny-warning.cjs.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-warning/dist/tiny-warning.esm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-warning/dist/tiny-warning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-warning/dist/tiny-warning.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-warning/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tiny-warning/src/index.js</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>
@@ -16210,11 +19851,37 @@
<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/tmp/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/Gruntfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/cleanup.sh</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/lib/tmp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/base.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/dir-sync-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/dir-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/file-sync-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/file-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/graceful-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/graceful.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/issue62-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/issue62.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/keep-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/keep.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/name-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/spawn-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/spawn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/symlinkme/file.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/unsafe-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tmp/test/unsafe.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>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/to-object-path/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/LICENSE</Path>
@@ -16238,16 +19905,46 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/table_arrays_easy.toml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/table_arrays_hard.toml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/test_toml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/cookie.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/memstore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/pathMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/permuteDomain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/pubsuffix.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/store.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/LICENSE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/lib/mappingTable.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/lib/regexes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/node_modules/punycode/LICENSE-MIT.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/node_modules/punycode/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/node_modules/punycode/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/node_modules/punycode/punycode.es6.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/node_modules/punycode/punycode.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/trim-repeated/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/trim-repeated/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/trim-repeated/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/trim-repeated/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-catch/ChangeLog</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-catch/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-catch/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-catch/lib/try-catch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-catch/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-to-catch/ChangeLog</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-to-catch/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-to-catch/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-to-catch/legacy/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-to-catch/legacy/try-to-catch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-to-catch/lib/try-to-catch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/try-to-catch/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tunnel-agent/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tunnel-agent/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tunnel-agent/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tunnel-agent/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/dist/turndown-plugin-gfm.js</Path>
@@ -16265,57 +19962,443 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/lib/turndown.cjs.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/lib/turndown.es.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/lib/turndown.umd.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/assert-plus/AUTHORS</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/assert-plus/CHANGES.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/assert-plus/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/assert-plus/assert.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/assert-plus/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/aws-sign2/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/aws-sign2/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/aws-sign2/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/aws-sign2/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/caseless/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/caseless/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/caseless/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/caseless/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/caseless/test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/combined-stream/License</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/combined-stream/Readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/combined-stream/lib/combined_stream.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/combined-stream/lib/defer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/combined-stream/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/License</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/Makefile</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/Readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/lib/delayed_stream.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/License</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/README.md.bak</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/lib/browser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/lib/form_data.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/lib/populate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/yarn.lock</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/lib/async.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/lib/error.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/lib/promise.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/.dir-locals.el</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/CHANGES.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/http_signing.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/lib/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/lib/parser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/lib/signer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/lib/utils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/lib/verify.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/abab/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/abab/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/abab/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/abab/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/abab/lib/atob.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/abab/lib/btoa.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/abab/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/bin/_acorn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/bin/acorn</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/bin/run_test262.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/bin/test262.whitelist</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/dist/.keep</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/dist/acorn.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/dist/acorn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/dist/acorn_loose.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/dist/acorn_loose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/dist/walk.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/dist/walk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/acorn/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/MIT-LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/CSSStyleDeclaration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/parsers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/alignContent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/alignItems.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/alignmentBaseline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/azimuth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/background.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundAttachment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundClip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundOrigin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundPosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundPositionX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundPositionY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundRepeatX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundRepeatY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/backgroundSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/baselineShift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/border.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderBottom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderBottomColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderBottomLeftRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderBottomRightRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderBottomStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderBottomWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderImageOutset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderImageRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderImageSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderImageSource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderImageWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderLeft.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderLeftColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderLeftStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderLeftWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderRightColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderRightStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderRightWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderTop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderTopColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderTopLeftRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderTopRightRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderTopStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderTopWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/borderWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/bottom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/boxShadow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/boxSizing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/captionSide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/clear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/clip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/color.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/colorInterpolation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/colorInterpolationFilters.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/colorProfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/colorRendering.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/content.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/counterIncrement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/counterReset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/cssFloat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/cue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/cueAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/cueBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/cursor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/direction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/display.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/dominantBaseline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/elevation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/emptyCells.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/enableBackground.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/fillOpacity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/fillRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/flexDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/flexFlow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/flexWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/floodColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/floodOpacity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/font.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/fontFamily.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/fontSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/fontSizeAdjust.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/fontStretch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/fontStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/fontVariant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/fontWeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/glyphOrientationHorizontal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/glyphOrientationVertical.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/height.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/imageRendering.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/justifyContent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/kerning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/letterSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/lightingColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/lineHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/listStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/listStyleImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/listStylePosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/listStyleType.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/margin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/marginBottom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/marginLeft.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/marginRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/marginTop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/marker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/markerEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/markerMid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/markerOffset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/markerStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/marks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/mask.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/maxHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/maxWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/minHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/minWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/opacity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/orphans.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/outline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/outlineColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/outlineOffset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/outlineStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/outlineWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/overflow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/overflowX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/overflowY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/padding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/paddingBottom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/paddingLeft.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/paddingRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/paddingTop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/page.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/pageBreakAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/pageBreakBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/pageBreakInside.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/pause.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/pauseAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/pauseBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/pitch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/pitchRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/playDuring.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/pointerEvents.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/position.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/quotes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/resize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/richness.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/shapeRendering.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/speak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/speakHeader.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/speakNumeral.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/speakPunctuation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/speechRate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/src.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/stopColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/stopOpacity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/stress.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/stroke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/strokeDasharray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/strokeDashoffset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/strokeLinecap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/strokeLinejoin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/strokeMiterlimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/strokeOpacity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/strokeWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/tableLayout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textAnchor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textDecoration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textIndent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textLineThrough.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textLineThroughColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textLineThroughMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textLineThroughStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textLineThroughWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textOverflow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textOverline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textOverlineColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textOverlineMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textOverlineStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textOverlineWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textRendering.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textShadow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textTransform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textUnderline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textUnderlineColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textUnderlineMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textUnderlineStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/textUnderlineWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/top.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/unicodeBidi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/unicodeRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/vectorEffect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/verticalAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/visibility.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/voiceFamily.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/volume.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAnimation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAnimationDelay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAnimationDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAnimationDuration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAnimationFillMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAnimationIterationCount.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAnimationName.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAnimationPlayState.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAnimationTimingFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAppearance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitAspectRatio.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBackfaceVisibility.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBackgroundClip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBackgroundComposite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBackgroundOrigin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBackgroundSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderAfterStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderAfterWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderBeforeStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderBeforeWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderEndStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderEndWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderFit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderHorizontalSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderStartColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderStartStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderStartWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBorderVerticalSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBoxAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBoxDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBoxFlex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBoxFlexGroup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBoxLines.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBoxOrdinalGroup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBoxOrient.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBoxPack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBoxReflect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitBoxShadow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColorCorrection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnAxis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnBreakAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnBreakBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnBreakInside.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnCount.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnGap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnRuleStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnRuleWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnSpan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumnWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitColumns.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFilter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFlexAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFlexDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFlexFlow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFlexItemAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFlexLinePack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFlexOrder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFlexPack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFlexWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFlowFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFlowInto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFontFeatureSettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFontKerning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFontSizeDelta.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFontSmoothing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitFontVariantLigatures.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitHighlight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitHyphenateCharacter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitHyphenateLimitAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitHyphenateLimitBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitHyphenateLimitLines.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitHyphens.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitLineAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitLineBoxContain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitLineBreak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitLineClamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitLineGrid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitLineSnap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitLocale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitLogicalHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitLogicalWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarginAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarginAfterCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarginBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarginBeforeCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarginBottomCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarginCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarginEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarginStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarginTopCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarquee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarqueeDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarqueeIncrement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarqueeRepetition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarqueeSpeed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMarqueeStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMask.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskAttachment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskBoxImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskBoxImageOutset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskBoxImageRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskBoxImageSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskBoxImageSource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskBoxImageWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskClip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskComposite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskOrigin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskPosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskPositionX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskPositionY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskRepeatX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskRepeatY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaskSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMatchNearestMailBlockquoteColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaxLogicalHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMaxLogicalWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMinLogicalHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitMinLogicalWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitNbspMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitOverflowScrolling.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitPaddingAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitPaddingBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitPaddingEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitPaddingStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitPerspective.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitPerspectiveOrigin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitPerspectiveOriginX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitPerspectiveOriginY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitPrintColorAdjust.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitRegionBreakAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitRegionBreakBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitRegionBreakInside.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitRegionOverflow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitRtlOrdering.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitSvgShadow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextCombine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextDecorationsInEffect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextEmphasis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextEmphasisPosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextEmphasisStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextFillColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextOrientation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextSecurity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextSizeAdjust.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextStroke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTextStrokeWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransformOrigin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransformOriginX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransformOriginY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransformOriginZ.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransformStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransitionDelay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransitionDuration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransitionProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitTransitionTimingFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitUserDrag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitUserModify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitUserSelect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitWrapFlow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitWrapMargin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitWrapPadding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitWrapShapeInside.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitWrapShapeOutside.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitWrapThrough.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/webkitWritingMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/whiteSpace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/widows.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/width.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/wordBreak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/wordSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/wordWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/writingMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/zIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/lib/properties/zoom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/scripts/generate_properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/cssstyle/tests/tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/escodegen/LICENSE.BSD</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/escodegen/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/escodegen/bin/escodegen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/escodegen/bin/esgenerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/escodegen/escodegen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/escodegen/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/escodegen/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/Changelog.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/LICENSE.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/README.md</Path>
@@ -16717,70 +20800,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/vm-shim.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/old-api.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/old-api.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/HISTORY.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/db.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-types/HISTORY.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-types/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-types/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-types/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-types/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/oauth-sign/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/oauth-sign/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/oauth-sign/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/oauth-sign/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/punycode/LICENSE-MIT.txt</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/punycode/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/punycode/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/punycode/punycode.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/.editorconfig</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/.eslintignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/.eslintrc</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/dist/qs.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/lib/formats.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/lib/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/lib/parse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/lib/stringify.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/lib/utils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/test/.eslintrc</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/test/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/test/parse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/test/stringify.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/test/utils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/auth.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/cookies.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/getProxyFromURI.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/har.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/hawk.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/helpers.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/multipart.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/oauth.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/querystring.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/redirect.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/tunnel.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/cookie.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/memstore.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/pathMatch.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/permuteDomain.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/pubsuffix-psl.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/store.js</Path>
- <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>
@@ -16789,17 +20810,21 @@
<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>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tunnel-agent/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/lib/buffer-util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/lib/constants.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/lib/event-target.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/lib/extension.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/lib/permessage-deflate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/lib/receiver.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/lib/sender.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/lib/validation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/lib/websocket-server.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/lib/websocket.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/ws/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/AUTHORS.md</Path>
@@ -16819,6 +20844,19 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-check/lib/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-check/lib/parse-type.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-check/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/source/basic.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/source/literal-union.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/source/merge-exclusive.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/source/merge.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/source/mutable.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/source/omit.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/source/package-json.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/source/readonly-deep.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-fest/source/require-at-least-one.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/example/tarray.js</Path>
@@ -16838,7 +20876,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/dist/ua-parser.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/dist/ua-parser.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/dist/ua-parser.pack.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/license.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/package.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/readme.md</Path>
@@ -16862,24 +20899,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uc.micro/properties/Any/regex.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore-plus/LICENSE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore-plus/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore-plus/appveyor.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore-plus/lib/underscore-plus.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore-plus/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/README.markdown</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/bower.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/component.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/foo.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/gulpfile.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/lib/underscore.string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/libpeerconnection.log</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/underscore-min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/underscore-min.js.map</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/underscore.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unique-slug/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unique-slug/.travis.yml</Path>
@@ -16891,72 +20916,34 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/universalify/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/universalify/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/universalify/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unorm/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unorm/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unorm/lib/unorm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unorm/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unzip-response/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unzip-response/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unzip-response/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unzip-response/readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/bower.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.min.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/index.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/index.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-iri.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-iri.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-iri.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-uri.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-uri.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-uri.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/http.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/http.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/http.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/https.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/https.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/https.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/mailto.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/mailto.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/uri.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/uri.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/uri.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/util.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/util.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/util.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/rollup.config.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/index.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/punycode.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/regexps-iri.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/regexps-uri.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/schemes/http.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/schemes/https.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/schemes/mailto.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/schemes/urn-uuid.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/schemes/urn.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/uri.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/util.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tests/qunit.css</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tests/qunit.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tests/test-es5-min.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tests/test-es5.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tests/tests.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tsconfig.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/upper-case/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/upper-case/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/upper-case/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/upper-case/upper-case.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/upper-case/upper-case.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/url-parse-lax/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/url-parse-lax/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/url-parse-lax/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/url-parse-lax/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/lib/L.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/lib/M.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/lib/N.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/lib/Z.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/lib/uslug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uslug/test/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/util-deprecate/History.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/util-deprecate/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/util-deprecate/README.md</Path>
@@ -16984,17 +20971,33 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uuid/v3.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uuid/v4.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uuid/v5.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/value-equal/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/value-equal/cjs/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/value-equal/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/value-equal/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/value-equal/umd/resolve-pathname.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/value-equal/umd/resolve-pathname.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/value-equal/umd/value-equal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/value-equal/umd/value-equal.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/CHANGES.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/CONTRIBUTING.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/lib/verror.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/assert-plus/AUTHORS</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/assert-plus/CHANGES.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/assert-plus/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/assert-plus/assert.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/assert-plus/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/.gitmodules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/CONTRIBUTING.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/Makefile.targ</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/jsl.node.conf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/lib/extsprintf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/test/tst.basic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/extsprintf/test/tst.invalid.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/README.md</Path>
@@ -17015,13 +21018,38 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/lib/labels-to-names.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/lib/supported-names.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/lib/whatwg-encoding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/Changelog.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/dbcs-codec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/dbcs-data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/internal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-codec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-data-generated.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/tables/big5-added.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp936.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp949.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp950.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/tables/eucjp.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/tables/gbk-added.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/tables/shiftjis.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/utf16.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/encodings/utf7.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/lib/bom-handling.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/lib/extend-node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/lib/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/lib/streams.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/node_modules/iconv-lite/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/dist/fetch.umd.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/dist/fetch.umd.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/fetch.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/fetch.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-mimetype/LICENSE.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-mimetype/README.md</Path>
@@ -17042,6 +21070,16 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/urlencoded.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/utils.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/which-module/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/which-module/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/which-module/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/which-module/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/which-module/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/word-wrap/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/word-wrap/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/word-wrap/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/word-wrap/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/word-wrap/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wordwrap/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wordwrap/README.markdown</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wordwrap/example/center.js</Path>
@@ -17051,29 +21089,19 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wordwrap/test/break.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wordwrap/test/idleness.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wordwrap/test/wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrap-ansi/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrap-ansi/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrap-ansi/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrap-ansi/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrap-ansi/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrappy/LICENSE</Path>
<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>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/write-file-atomic/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/buffer-util.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/constants.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/event-target.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/extension.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/permessage-deflate.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/receiver.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/sender.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/validation.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/websocket-server.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/websocket.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xml-name-validator/LICENSE.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xml-name-validator/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xml-name-validator/lib/generated-parser.js</Path>
@@ -17089,8 +21117,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xtend/mutable.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xtend/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xtend/test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/package-lock.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/y18n/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/y18n/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/y18n/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/y18n/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/prettier.config</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/app.icns</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/app.ico</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/app.png</Path>
@@ -17200,8 +21232,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-down.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-edit-lock.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-edit.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-external.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-full.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-info.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-left-to-right.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-list-active.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-list.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-lock.svg</Path>
@@ -17215,7 +21249,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-plus.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-previewoff-off.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-previewoff-on.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-right-to-left.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-right.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-search-active.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-search.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-setting.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-sidebar.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-star-active.svg</Path>
@@ -17228,6 +21265,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-up.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>
@@ -17247,6 +21285,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/copyFile-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/createFolder-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/createNote-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/createNoteFromUrl-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/createSnippet-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/deleteFolder-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/deleteNote-test.js</Path>
@@ -17284,25 +21323,29 @@
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/normalize-editor-font-family-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/rc-parser-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/search-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/slugify-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/snapshots/markdown-test.js.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/snapshots/markdown-test.js.snap</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/spellcheck.test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/themeManager.test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/utils.test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/electron.asar</Path>
- <Path fileType="data">/usr/share/boostnote/ui_resources_200_percent.pak</Path>
+ <Path fileType="data">/usr/share/boostnote/snapshot_blob.bin</Path>
+ <Path fileType="data">/usr/share/boostnote/swiftshader/libEGL.so</Path>
+ <Path fileType="data">/usr/share/boostnote/swiftshader/libGLESv2.so</Path>
<Path fileType="data">/usr/share/boostnote/v8_context_snapshot.bin</Path>
<Path fileType="data">/usr/share/boostnote/version</Path>
- <Path fileType="data">/usr/share/boostnote/views_resources_200_percent.pak</Path>
<Path fileType="data">/usr/share/pixmaps/boostnote.png</Path>
</Files>
</Package>
<History>
- <Update release="7">
- <Date>2019-03-31</Date>
- <Version>0.11.15</Version>
+ <Update release="8">
+ <Date>2020-06-02</Date>
+ <Version>0.15.3</Version>
<Comment>Packaging update</Comment>
- <Name>Bryan T. Meyers</Name>
- <Email>bmeyers@datadrake.com</Email>
+ <Name>Albert Krenz</Name>
+ <Email>albert.krenz+solus@mailbox.org</Email>
</Update>
</History>
</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Thu, Aug 10, 3:12 PM (1 d, 3 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5811023
Default Alt Text
D8977.id21588.diff (2 MB)

Event Timeline