git: dc7d82206c0c - main - textproc/logseq: Platform for knowledge management and collaboration.

From: Gleb Popov <arrowd_at_FreeBSD.org>
Date: Mon, 06 Nov 2023 11:03:29 UTC
The branch main has been updated by arrowd:

URL: https://cgit.FreeBSD.org/ports/commit/?id=dc7d82206c0cdecc453351c550b1c9a0f496d835

commit dc7d82206c0cdecc453351c550b1c9a0f496d835
Author:     Gleb Popov <arrowd@FreeBSD.org>
AuthorDate: 2023-09-22 18:31:06 +0000
Commit:     Gleb Popov <arrowd@FreeBSD.org>
CommitDate: 2023-11-06 11:03:09 +0000

    textproc/logseq: Platform for knowledge management and collaboration.
---
 textproc/Makefile                                  |    1 +
 textproc/logseq/Makefile                           |   36 +
 textproc/logseq/distinfo                           |    5 +
 textproc/logseq/files/Logseq.desktop               |    8 +
 textproc/logseq/files/Logseq.in                    |    8 +
 ...odules__logseq_rsapi-linux-x64-gnu_package.json |   26 +
 textproc/logseq/pkg-descr                          |    5 +
 textproc/logseq/pkg-plist                          | 7749 ++++++++++++++++++++
 8 files changed, 7838 insertions(+)

diff --git a/textproc/Makefile b/textproc/Makefile
index 3becae234689..06b9a595641d 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -443,6 +443,7 @@
     SUBDIR += linuxdoc
     SUBDIR += linuxdoc-tools
     SUBDIR += localize
+    SUBDIR += logseq
     SUBDIR += lookatme
     SUBDIR += loook
     SUBDIR += lowdown
diff --git a/textproc/logseq/Makefile b/textproc/logseq/Makefile
new file mode 100644
index 000000000000..031a1080a331
--- /dev/null
+++ b/textproc/logseq/Makefile
@@ -0,0 +1,36 @@
+PORTNAME=	logseq
+PORTVERSION=	0.9.20
+CATEGORIES=	textproc
+MASTER_SITES=	https://github.com/logseq/logseq/releases/download/${PORTVERSION}/ \
+		LOCAL/arrowd/:rsapi
+DISTFILES=	Logseq-linux-x64-${PORTVERSION}${EXTRACT_SUFX} \
+		logseq/rsapi.freebsd-x64.node${EXTRACT_SUFX}:rsapi
+
+MAINTAINER=	arrowd@FreeBSD.org
+COMMENT=	Open-source platform for knowledge management and collaboration
+WWW=		https://logseq.com
+
+LICENSE=	AGPLv3
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		desktop-file-utils electronfix:25 shared-mime-info
+
+ELECTRONFIX_MAIN_EXECUTABLE=	Logseq
+SUB_FILES=	Logseq
+NO_BUILD=	yes
+WRKSRC=		${WRKDIR}/Logseq-linux-x64
+
+post-patch:
+	${RM} ${WRKSRC}/resources/app/node_modules/@logseq/rsapi-linux-x64-gnu/package.json.orig
+
+do-install:
+	cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}${DATADIR}
+	${INSTALL_SCRIPT} ${WRKDIR}/Logseq ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_DATA} ${PATCHDIR}/Logseq.desktop ${STAGEDIR}${DESKTOPDIR}/Logseq.desktop
+	${INSTALL_DATA} ${WRKSRC}/resources/app/icon.png ${STAGEDIR}${PREFIX}/share/pixmaps/Logseq.png
+	${FIND} ${STAGEDIR}${DATADIR} -type d -empty -delete
+	${MV} ${STAGEDIR}${DATADIR}/resources/app/node_modules/@logseq/rsapi-linux-x64-gnu \
+		${STAGEDIR}${DATADIR}/resources/app/node_modules/@logseq/rsapi-freebsd-x64
+	${INSTALL_PROGRAM} ${WRKDIR}/rsapi.freebsd-x64.node ${STAGEDIR}${DATADIR}/resources/app/node_modules/@logseq/rsapi-freebsd-x64
+
+.include <bsd.port.mk>
diff --git a/textproc/logseq/distinfo b/textproc/logseq/distinfo
new file mode 100644
index 000000000000..59266d922918
--- /dev/null
+++ b/textproc/logseq/distinfo
@@ -0,0 +1,5 @@
+TIMESTAMP = 1699189271
+SHA256 (Logseq-linux-x64-0.9.20.zip) = fb9002a317063fd8473c3d08b8ffd0546bc30fbef257747cfafe2bf17e88c3d4
+SIZE (Logseq-linux-x64-0.9.20.zip) = 191060640
+SHA256 (logseq/rsapi.freebsd-x64.node.zip) = 104ac8d27cbbbbdb0034e08326f043bd12a790b296d09511a37367d9c184d08c
+SIZE (logseq/rsapi.freebsd-x64.node.zip) = 3190039
diff --git a/textproc/logseq/files/Logseq.desktop b/textproc/logseq/files/Logseq.desktop
new file mode 100644
index 000000000000..ce9de84399ef
--- /dev/null
+++ b/textproc/logseq/files/Logseq.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Type=Application
+Name=Logseq
+Comment=Open Source platform for knowledge sharing and management
+Icon=Logseq
+Exec=Logseq %u
+Categories=Office;
+MimeType=x-scheme-handler/logseq
diff --git a/textproc/logseq/files/Logseq.in b/textproc/logseq/files/Logseq.in
new file mode 100644
index 000000000000..67913cb0884b
--- /dev/null
+++ b/textproc/logseq/files/Logseq.in
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+# workaround Chromium bug https://bugs.chromium.org/p/chromium/issues/detail?id=918234
+if [ "$DBUS_SESSION_BUS_ADDRESS" = "" ]; then
+    export DBUS_SESSION_BUS_ADDRESS="autolaunch:"
+fi
+
+exec %%DATADIR%%/Logseq "$@"
diff --git a/textproc/logseq/files/patch-resources_app_node__modules__logseq_rsapi-linux-x64-gnu_package.json b/textproc/logseq/files/patch-resources_app_node__modules__logseq_rsapi-linux-x64-gnu_package.json
new file mode 100644
index 000000000000..3ce1d2285864
--- /dev/null
+++ b/textproc/logseq/files/patch-resources_app_node__modules__logseq_rsapi-linux-x64-gnu_package.json
@@ -0,0 +1,26 @@
+--- resources/app/node_modules/@logseq/rsapi-linux-x64-gnu/package.json.orig	2023-11-01 13:40:29 UTC
++++ resources/app/node_modules/@logseq/rsapi-linux-x64-gnu/package.json
+@@ -1,19 +1,19 @@
+ {
+-  "name": "@logseq/rsapi-linux-x64-gnu",
++  "name": "@logseq/rsapi-freebsd-x64",
+   "private": false,
+   "publishConfig": {
+     "access": "public"
+   },
+   "version": "0.0.75",
+   "os": [
+-    "linux"
++    "freebsd"
+   ],
+   "cpu": [
+     "x64"
+   ],
+-  "main": "rsapi.linux-x64-gnu.node",
++  "main": "rsapi.freebsd-x64.node",
+   "files": [
+-    "rsapi.linux-x64-gnu.node"
++    "rsapi.freebsd-x64.node"
+   ],
+   "license": "MIT",
+   "engines": {
diff --git a/textproc/logseq/pkg-descr b/textproc/logseq/pkg-descr
new file mode 100644
index 000000000000..bca57d849b52
--- /dev/null
+++ b/textproc/logseq/pkg-descr
@@ -0,0 +1,5 @@
+Logseq is a knowledge management and collaboration platform. It focuses on
+privacy, longevity, and user control. Logseq offers a range of powerful tools
+for knowledge management, collaboration, PDF annotation, and task management
+with support for multiple file formats, including Markdown and Org-mode, and
+various features for organizing and structuring your notes.
diff --git a/textproc/logseq/pkg-plist b/textproc/logseq/pkg-plist
new file mode 100644
index 000000000000..25414d01a860
--- /dev/null
+++ b/textproc/logseq/pkg-plist
@@ -0,0 +1,7749 @@
+bin/Logseq
+share/applications/Logseq.desktop
+%%DATADIR%%/LICENSE
+%%DATADIR%%/LICENSES.chromium.html
+%%DATADIR%%/Logseq
+%%DATADIR%%/chrome_100_percent.pak
+%%DATADIR%%/chrome_200_percent.pak
+%%DATADIR%%/chrome_crashpad_handler
+%%DATADIR%%/chromedriver
+%%DATADIR%%/icudtl.dat
+%%DATADIR%%/libEGL.so
+%%DATADIR%%/libGLESv2.so
+%%DATADIR%%/libffmpeg.so
+%%DATADIR%%/libvk_swiftshader.so
+%%DATADIR%%/libvulkan.so
+%%DATADIR%%/locales/af.pak
+%%DATADIR%%/locales/am.pak
+%%DATADIR%%/locales/ar.pak
+%%DATADIR%%/locales/bg.pak
+%%DATADIR%%/locales/bn.pak
+%%DATADIR%%/locales/ca.pak
+%%DATADIR%%/locales/cs.pak
+%%DATADIR%%/locales/da.pak
+%%DATADIR%%/locales/de.pak
+%%DATADIR%%/locales/el.pak
+%%DATADIR%%/locales/en-GB.pak
+%%DATADIR%%/locales/en-US.pak
+%%DATADIR%%/locales/es-419.pak
+%%DATADIR%%/locales/es.pak
+%%DATADIR%%/locales/et.pak
+%%DATADIR%%/locales/fa.pak
+%%DATADIR%%/locales/fi.pak
+%%DATADIR%%/locales/fil.pak
+%%DATADIR%%/locales/fr.pak
+%%DATADIR%%/locales/gu.pak
+%%DATADIR%%/locales/he.pak
+%%DATADIR%%/locales/hi.pak
+%%DATADIR%%/locales/hr.pak
+%%DATADIR%%/locales/hu.pak
+%%DATADIR%%/locales/id.pak
+%%DATADIR%%/locales/it.pak
+%%DATADIR%%/locales/ja.pak
+%%DATADIR%%/locales/kn.pak
+%%DATADIR%%/locales/ko.pak
+%%DATADIR%%/locales/lt.pak
+%%DATADIR%%/locales/lv.pak
+%%DATADIR%%/locales/ml.pak
+%%DATADIR%%/locales/mr.pak
+%%DATADIR%%/locales/ms.pak
+%%DATADIR%%/locales/nb.pak
+%%DATADIR%%/locales/nl.pak
+%%DATADIR%%/locales/pl.pak
+%%DATADIR%%/locales/pt-BR.pak
+%%DATADIR%%/locales/pt-PT.pak
+%%DATADIR%%/locales/ro.pak
+%%DATADIR%%/locales/ru.pak
+%%DATADIR%%/locales/sk.pak
+%%DATADIR%%/locales/sl.pak
+%%DATADIR%%/locales/sr.pak
+%%DATADIR%%/locales/sv.pak
+%%DATADIR%%/locales/sw.pak
+%%DATADIR%%/locales/ta.pak
+%%DATADIR%%/locales/te.pak
+%%DATADIR%%/locales/th.pak
+%%DATADIR%%/locales/tr.pak
+%%DATADIR%%/locales/uk.pak
+%%DATADIR%%/locales/ur.pak
+%%DATADIR%%/locales/vi.pak
+%%DATADIR%%/locales/zh-CN.pak
+%%DATADIR%%/locales/zh-TW.pak
+%%DATADIR%%/resources.pak
+%%DATADIR%%/resources/app/404.html
+%%DATADIR%%/resources/app/VERSION
+%%DATADIR%%/resources/app/android/icon-background.png
+%%DATADIR%%/resources/app/android/icon-foreground.png
+%%DATADIR%%/resources/app/android/icon/drawable-hdpi-icon.png
+%%DATADIR%%/resources/app/android/icon/drawable-ldpi-icon.png
+%%DATADIR%%/resources/app/android/icon/drawable-mdpi-icon.png
+%%DATADIR%%/resources/app/android/icon/drawable-xhdpi-icon.png
+%%DATADIR%%/resources/app/android/icon/drawable-xxhdpi-icon.png
+%%DATADIR%%/resources/app/android/icon/drawable-xxxhdpi-icon.png
+%%DATADIR%%/resources/app/android/icon/hdpi-background.png
+%%DATADIR%%/resources/app/android/icon/hdpi-foreground.png
+%%DATADIR%%/resources/app/android/icon/ldpi-background.png
+%%DATADIR%%/resources/app/android/icon/ldpi-foreground.png
+%%DATADIR%%/resources/app/android/icon/mdpi-background.png
+%%DATADIR%%/resources/app/android/icon/mdpi-foreground.png
+%%DATADIR%%/resources/app/android/icon/xhdpi-background.png
+%%DATADIR%%/resources/app/android/icon/xhdpi-foreground.png
+%%DATADIR%%/resources/app/android/icon/xxhdpi-background.png
+%%DATADIR%%/resources/app/android/icon/xxhdpi-foreground.png
+%%DATADIR%%/resources/app/android/icon/xxxhdpi-background.png
+%%DATADIR%%/resources/app/android/icon/xxxhdpi-foreground.png
+%%DATADIR%%/resources/app/android/splash/drawable-land-hdpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-land-ldpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-land-mdpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-land-xhdpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-land-xxhdpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-land-xxxhdpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-port-hdpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-port-ldpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-port-mdpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-port-xhdpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-port-xxhdpi-screen.png
+%%DATADIR%%/resources/app/android/splash/drawable-port-xxxhdpi-screen.png
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Black.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Black.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-BlackItalic.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-BlackItalic.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Bold.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Bold.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-BoldItalic.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-BoldItalic.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-ExtraBold.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-ExtraBold.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-ExtraBoldItalic.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-ExtraBoldItalic.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-ExtraLight.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-ExtraLight.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-ExtraLightItalic.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-ExtraLightItalic.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Italic.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Italic.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Light.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Light.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-LightItalic.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-LightItalic.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Medium.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Medium.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-MediumItalic.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-MediumItalic.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Regular.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Regular.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-SemiBold.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-SemiBold.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-SemiBoldItalic.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-SemiBoldItalic.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Thin.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-Thin.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-ThinItalic.woff
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-ThinItalic.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-italic.var.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter-roman.var.woff2
+%%DATADIR%%/resources/app/css/Inter (web)/Inter.var.woff2
+%%DATADIR%%/resources/app/css/LICENSE
+%%DATADIR%%/resources/app/css/fonts/KaTeX_AMS-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Caligraphic-Bold.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Caligraphic-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Fraktur-Bold.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Fraktur-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Main-Bold.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Main-BoldItalic.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Main-Italic.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Main-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Math-BoldItalic.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Math-Italic.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_SansSerif-Bold.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_SansSerif-Italic.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_SansSerif-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Script-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Size1-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Size2-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Size3-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Size4-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/KaTeX_Typewriter-Regular.woff2
+%%DATADIR%%/resources/app/css/fonts/tabler-icons.eot
+%%DATADIR%%/resources/app/css/fonts/tabler-icons.svg
+%%DATADIR%%/resources/app/css/fonts/tabler-icons.ttf
+%%DATADIR%%/resources/app/css/fonts/tabler-icons.woff
+%%DATADIR%%/resources/app/css/fonts/tabler-icons.woff2
+%%DATADIR%%/resources/app/css/inter.css
+%%DATADIR%%/resources/app/css/source-sans-pro-italic.eot
+%%DATADIR%%/resources/app/css/source-sans-pro-italic.ttf
+%%DATADIR%%/resources/app/css/source-sans-pro-italic.woff
+%%DATADIR%%/resources/app/css/source-sans-pro-regular.eot
+%%DATADIR%%/resources/app/css/source-sans-pro-regular.ttf
+%%DATADIR%%/resources/app/css/source-sans-pro-regular.woff
+%%DATADIR%%/resources/app/css/source-sans-pro-semibold.eot
+%%DATADIR%%/resources/app/css/source-sans-pro-semibold.ttf
+%%DATADIR%%/resources/app/css/source-sans-pro-semibold.woff
+%%DATADIR%%/resources/app/css/source-sans-pro-semibolditalic.eot
+%%DATADIR%%/resources/app/css/source-sans-pro-semibolditalic.ttf
+%%DATADIR%%/resources/app/css/source-sans-pro-semibolditalic.woff
+%%DATADIR%%/resources/app/css/source-sans-pro.css
+%%DATADIR%%/resources/app/css/style.css
+%%DATADIR%%/resources/app/css/tabler-extension.css
+%%DATADIR%%/resources/app/css/tabler-icons.min.css
+%%DATADIR%%/resources/app/docs/api_server.html
+%%DATADIR%%/resources/app/electron.html
+%%DATADIR%%/resources/app/electron.js
+%%DATADIR%%/resources/app/electron.js.map
+%%DATADIR%%/resources/app/entitlements.plist
+%%DATADIR%%/resources/app/fonts/tabler-icons-extension.woff2
+%%DATADIR%%/resources/app/forge.config.js
+%%DATADIR%%/resources/app/icon.png
+%%DATADIR%%/resources/app/icon_monochrome.png
+%%DATADIR%%/resources/app/icons.edn
+%%DATADIR%%/resources/app/icons/canary/logseq.ico
+%%DATADIR%%/resources/app/icons/canary/logseq.png
+%%DATADIR%%/resources/app/icons/canary/logseq_big_sur.icns
+%%DATADIR%%/resources/app/icons/canary/logseq_big_sur.ico
+%%DATADIR%%/resources/app/icons/canary/logseq_big_sur.png
+%%DATADIR%%/resources/app/icons/installing.gif
+%%DATADIR%%/resources/app/icons/logseq.icns
+%%DATADIR%%/resources/app/icons/logseq.ico
+%%DATADIR%%/resources/app/icons/logseq.png
+%%DATADIR%%/resources/app/icons/logseq_big_sur.icns
+%%DATADIR%%/resources/app/icons/logseq_big_sur.ico
+%%DATADIR%%/resources/app/icons/logseq_big_sur.png
+%%DATADIR%%/resources/app/img/broken-avatar.png
+%%DATADIR%%/resources/app/img/checker.png
+%%DATADIR%%/resources/app/img/credits.png
+%%DATADIR%%/resources/app/img/dmg-bg.png
+%%DATADIR%%/resources/app/img/file-edn.png
+%%DATADIR%%/resources/app/img/file-sync-unavailale-nonbacker-dark.png
+%%DATADIR%%/resources/app/img/file-sync-unavailale-nonbacker-light.png
+%%DATADIR%%/resources/app/img/file-sync-welcome-backer-dark.png
+%%DATADIR%%/resources/app/img/file-sync-welcome-backer-light.png
+%%DATADIR%%/resources/app/img/folder-logo.png
+%%DATADIR%%/resources/app/img/folder.png
+%%DATADIR%%/resources/app/img/logo.png
+%%DATADIR%%/resources/app/img/screenshot.png
+%%DATADIR%%/resources/app/img/theme-modes.png
+%%DATADIR%%/resources/app/img/tutorial-thumb.jpg
+%%DATADIR%%/resources/app/img/whiteboard-welcome-dark.png
+%%DATADIR%%/resources/app/img/whiteboard-welcome-light.png
+%%DATADIR%%/resources/app/index.html
+%%DATADIR%%/resources/app/ios/icon/icon-1024.png
+%%DATADIR%%/resources/app/ios/icon/icon-108@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-20.png
+%%DATADIR%%/resources/app/ios/icon/icon-20@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-20@3x.png
+%%DATADIR%%/resources/app/ios/icon/icon-24@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-27.5@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-29.png
+%%DATADIR%%/resources/app/ios/icon/icon-29@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-29@3x.png
+%%DATADIR%%/resources/app/ios/icon/icon-40.png
+%%DATADIR%%/resources/app/ios/icon/icon-40@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-40@3x.png
+%%DATADIR%%/resources/app/ios/icon/icon-44@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-50.png
+%%DATADIR%%/resources/app/ios/icon/icon-50@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-60.png
+%%DATADIR%%/resources/app/ios/icon/icon-60@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-60@3x.png
+%%DATADIR%%/resources/app/ios/icon/icon-72.png
+%%DATADIR%%/resources/app/ios/icon/icon-72@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-76.png
+%%DATADIR%%/resources/app/ios/icon/icon-76@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-83.5@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-86@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon-98@2x.png
+%%DATADIR%%/resources/app/ios/icon/icon.png
+%%DATADIR%%/resources/app/ios/icon/icon@2x.png
+%%DATADIR%%/resources/app/ios/splash/Default-1792h~iphone.png
+%%DATADIR%%/resources/app/ios/splash/Default-2436h.png
+%%DATADIR%%/resources/app/ios/splash/Default-2688h~iphone.png
+%%DATADIR%%/resources/app/ios/splash/Default-568h@2x~iphone.png
+%%DATADIR%%/resources/app/ios/splash/Default-667h.png
+%%DATADIR%%/resources/app/ios/splash/Default-736h.png
+%%DATADIR%%/resources/app/ios/splash/Default-Landscape-1792h~iphone.png
+%%DATADIR%%/resources/app/ios/splash/Default-Landscape-2436h.png
+%%DATADIR%%/resources/app/ios/splash/Default-Landscape-2688h~iphone.png
+%%DATADIR%%/resources/app/ios/splash/Default-Landscape-736h.png
+%%DATADIR%%/resources/app/ios/splash/Default-Landscape@2x~ipad.png
+%%DATADIR%%/resources/app/ios/splash/Default-Landscape@~ipadpro.png
+%%DATADIR%%/resources/app/ios/splash/Default-Landscape~ipad.png
+%%DATADIR%%/resources/app/ios/splash/Default-Portrait@2x~ipad.png
+%%DATADIR%%/resources/app/ios/splash/Default-Portrait@~ipadpro.png
+%%DATADIR%%/resources/app/ios/splash/Default-Portrait~ipad.png
+%%DATADIR%%/resources/app/ios/splash/Default@2x~iphone.png
+%%DATADIR%%/resources/app/ios/splash/Default@2x~universal~anyany.png
+%%DATADIR%%/resources/app/ios/splash/Default~iphone.png
+%%DATADIR%%/resources/app/js/amplify.js
+%%DATADIR%%/resources/app/js/code-editor.js
+%%DATADIR%%/resources/app/js/code-editor.js.map
+%%DATADIR%%/resources/app/js/excalidraw-assets/Assistant-Bold.woff2
+%%DATADIR%%/resources/app/js/excalidraw-assets/Assistant-Medium.woff2
+%%DATADIR%%/resources/app/js/excalidraw-assets/Assistant-Regular.woff2
+%%DATADIR%%/resources/app/js/excalidraw-assets/Assistant-SemiBold.woff2
+%%DATADIR%%/resources/app/js/excalidraw-assets/Cascadia.woff2
+%%DATADIR%%/resources/app/js/excalidraw-assets/Virgil.woff2
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/ar-SA-json-06d4bd2f3a164162f2b8.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/bg-BG-json-72ac7b7548d7fefdcd2a.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/bn-BD-json-759924ef13bd9e602cb3.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/ca-ES-json-6108f4ae0be3d1e369a6.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/cs-CZ-json-1ae99f296c9febb99f72.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/da-DK-json-ed85a6f48e1df51b1b46.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/de-DE-json-f70dfb7201a16dc3f9fc.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/el-GR-json-79f7d66730b39df84f8e.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/es-ES-json-682b92427b8b27bb0aa8.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/eu-ES-json-1cc77079b354b962615f.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/fa-IR-json-586a1324f942d89620b6.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/fi-FI-json-d43636fb51002f55e2a4.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/fr-FR-json-b5ea877625968f748b7f.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/gl-ES-json-2117445509ba7c479ee0.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/he-IL-json-3280be0edae615c7685f.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/hi-IN-json-dad8ce15f9b7a435a926.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/hu-HU-json-6ccf0d8a164ecec52187.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/id-ID-json-6031eb8be253b20c28e9.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/it-IT-json-446b14f993000d0f572f.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/ja-JP-json-ef6ec5abb0c3c53c7a51.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/kab-KAB-json-69853849c71eff277ba0.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/kk-KZ-json-1f9df2b51e34996bad30.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/ko-KR-json-cf33ecf52ab95055544b.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/ku-TR-json-d10a4bb9ede3c08a08e1.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/lt-LT-json-08c7fc343ef2f533ec5f.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/lv-LV-json-1e3a5e87e39d2d90274c.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/mr-IN-json-c922a007bb00d3e4f3b1.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/my-MM-json-1a05d5c242c822079dca.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/nb-NO-json-7ea7ab2356e76889af8d.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/nl-NL-json-5805f36f33a3f8e53adc.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/nn-NO-json-8209f0f674435b52293d.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/oc-FR-json-e90ca79174b6e1eccb72.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/pa-IN-json-1854ecccf3c6f8ea9c46.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/pl-PL-json-b4be83b26070e4cf70ca.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/pt-BR-json-2e7a1690edc8d46e8842.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/pt-PT-json-aba1622a80e32e465a3d.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/ro-RO-json-3397acad1a98b5093c8b.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/ru-RU-json-8ab49e8d0473e92a8ab9.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/si-LK-json-db1222db995d9425e281.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/sk-SK-json-50dcb09552f93c2de3a4.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/sl-SI-json-68eba9ac00ae57bae3f4.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/sv-SE-json-36b97455521e61312a47.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/ta-IN-json-4063d11b19f24794564a.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/th-TH-json-3a152569bbebfec7c6c0.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/tr-TR-json-9002b1505b0931924d42.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/uk-UA-json-4e345c790342b7672248.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/vi-VN-json-2f5b95c0011820e16f4b.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/zh-CN-json-2cb13b38b6615ada3097.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/zh-HK-json-4bcbf71743fda1544a84.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/locales/zh-TW-json-c39caba2da3f001066a8.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/vendor-53d1c69ef585b6dd219b.js
+%%DATADIR%%/resources/app/js/excalidraw-assets/vendor-53d1c69ef585b6dd219b.js.LICENSE.txt
+%%DATADIR%%/resources/app/js/excalidraw.js
+%%DATADIR%%/resources/app/js/excalidraw.js.map
+%%DATADIR%%/resources/app/js/glide/glide.core.min.css
+%%DATADIR%%/resources/app/js/glide/glide.min.js
+%%DATADIR%%/resources/app/js/glide/glide.theme.min.css
+%%DATADIR%%/resources/app/js/highlight.min.js
+%%DATADIR%%/resources/app/js/html2canvas.min.js
+%%DATADIR%%/resources/app/js/interact.min.js
+%%DATADIR%%/resources/app/js/katex.min.js
+%%DATADIR%%/resources/app/js/lightning-fs.min.js
+%%DATADIR%%/resources/app/js/lsplugin.core.js
+%%DATADIR%%/resources/app/js/lsplugin.core.js.LICENSE.txt
+%%DATADIR%%/resources/app/js/lsplugin.user.js
+%%DATADIR%%/resources/app/js/magic_portal.js
+%%DATADIR%%/resources/app/js/main.js
+%%DATADIR%%/resources/app/js/main.js.map
+%%DATADIR%%/resources/app/js/manifest.edn
+%%DATADIR%%/resources/app/js/marked.min.js
+%%DATADIR%%/resources/app/js/mhchem.min.js
+%%DATADIR%%/resources/app/js/module-loader.edn
+%%DATADIR%%/resources/app/js/module-loader.json
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/78-EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/78-EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/78-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/78-RKSJ-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/78-RKSJ-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/78-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/78ms-RKSJ-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/78ms-RKSJ-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/83pv-RKSJ-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/90ms-RKSJ-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/90ms-RKSJ-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/90msp-RKSJ-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/90msp-RKSJ-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/90pv-RKSJ-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/90pv-RKSJ-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Add-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Add-RKSJ-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Add-RKSJ-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Add-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-CNS1-0.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-CNS1-1.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-CNS1-2.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-CNS1-3.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-CNS1-4.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-CNS1-5.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-CNS1-6.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-CNS1-UCS2.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-GB1-0.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-GB1-1.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-GB1-2.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-GB1-3.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-GB1-4.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-GB1-5.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-GB1-UCS2.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Japan1-0.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Japan1-1.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Japan1-2.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Japan1-3.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Japan1-4.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Japan1-5.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Japan1-6.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Japan1-UCS2.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Korea1-0.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Korea1-1.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Korea1-2.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Adobe-Korea1-UCS2.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/B5-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/B5-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/B5pc-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/B5pc-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/CNS-EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/CNS-EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/CNS1-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/CNS1-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/CNS2-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/CNS2-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/ETHK-B5-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/ETHK-B5-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/ETen-B5-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/ETen-B5-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/ETenms-B5-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/ETenms-B5-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Ext-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Ext-RKSJ-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Ext-RKSJ-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Ext-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GB-EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GB-EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GB-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GB-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBK-EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBK-EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBK2K-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBK2K-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBKp-EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBKp-EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBT-EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBT-EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBT-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBT-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBTpc-EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBTpc-EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBpc-EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/GBpc-EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKdla-B5-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKdla-B5-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKdlb-B5-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKdlb-B5-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKgccs-B5-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKgccs-B5-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKm314-B5-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKm314-B5-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKm471-B5-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKm471-B5-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKscs-B5-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/HKscs-B5-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Hankaku.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Hiragana.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSC-EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSC-EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSC-Johab-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSC-Johab-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSCms-UHC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSCms-UHC-HW-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSCms-UHC-HW-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSCms-UHC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSCpc-EUC-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/KSCpc-EUC-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Katakana.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/NWP-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/NWP-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/RKSJ-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/RKSJ-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/Roman.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniCNS-UCS2-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniCNS-UCS2-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniCNS-UTF16-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniCNS-UTF16-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniCNS-UTF32-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniCNS-UTF32-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniCNS-UTF8-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniCNS-UTF8-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniGB-UCS2-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniGB-UCS2-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniGB-UTF16-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniGB-UTF16-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniGB-UTF32-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniGB-UTF32-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniGB-UTF8-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniGB-UTF8-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS-UCS2-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS-UCS2-HW-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS-UCS2-HW-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS-UCS2-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS-UTF16-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS-UTF16-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS-UTF32-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS-UTF32-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS-UTF8-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS-UTF8-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS2004-UTF16-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS2004-UTF16-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS2004-UTF32-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS2004-UTF32-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS2004-UTF8-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJIS2004-UTF8-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJISPro-UCS2-HW-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJISPro-UCS2-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJISPro-UTF8-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJISX0213-UTF32-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJISX0213-UTF32-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJISX02132004-UTF32-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniJISX02132004-UTF32-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniKS-UCS2-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniKS-UCS2-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniKS-UTF16-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniKS-UTF16-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniKS-UTF32-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniKS-UTF32-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniKS-UTF8-H.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/UniKS-UTF8-V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/V.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/cmaps/WP-Symbol.bcmap
+%%DATADIR%%/resources/app/js/pdfjs/pdf.js
+%%DATADIR%%/resources/app/js/pdfjs/pdf.worker.js
+%%DATADIR%%/resources/app/js/pdfjs/pdf_viewer.js
+%%DATADIR%%/resources/app/js/photoswipe-lightbox.umd.min.js
+%%DATADIR%%/resources/app/js/photoswipe.umd.min.js
+%%DATADIR%%/resources/app/js/preload.js
+%%DATADIR%%/resources/app/js/publishing/code-editor.js
+%%DATADIR%%/resources/app/js/publishing/excalidraw.js
+%%DATADIR%%/resources/app/js/publishing/main.js
+%%DATADIR%%/resources/app/js/publishing/manifest.edn
+%%DATADIR%%/resources/app/js/publishing/module-loader.edn
+%%DATADIR%%/resources/app/js/publishing/module-loader.json
+%%DATADIR%%/resources/app/js/publishing/tldraw.js
+%%DATADIR%%/resources/app/js/reveal.js
+%%DATADIR%%/resources/app/js/shepherd.min.js
+%%DATADIR%%/resources/app/js/tabler.ext.js
+%%DATADIR%%/resources/app/js/tabler.min.js
+%%DATADIR%%/resources/app/js/tldraw.js
+%%DATADIR%%/resources/app/js/tldraw.js.map
+%%DATADIR%%/resources/app/js/worker.js
+%%DATADIR%%/resources/app/marketplace.html
+%%DATADIR%%/resources/app/node_modules/@electron/get/LICENSE
+%%DATADIR%%/resources/app/node_modules/@electron/get/README.md
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/Cache.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/Cache.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/Cache.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/Downloader.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/Downloader.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/Downloader.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/GotDownloader.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/GotDownloader.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/GotDownloader.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/artifact-utils.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/artifact-utils.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/artifact-utils.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/downloader-resolver.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/downloader-resolver.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/downloader-resolver.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/index.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/index.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/proxy.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/proxy.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/proxy.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/types.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/types.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/types.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/utils.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/utils.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/cjs/utils.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/Cache.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/Cache.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/Cache.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/Downloader.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/Downloader.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/Downloader.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/GotDownloader.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/GotDownloader.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/GotDownloader.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/artifact-utils.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/artifact-utils.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/artifact-utils.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/downloader-resolver.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/downloader-resolver.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/downloader-resolver.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/index.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/index.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/proxy.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/proxy.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/proxy.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/types.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/types.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/types.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/utils.d.ts
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/utils.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/dist/esm/utils.js.map
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/CHANGELOG.md
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/LICENSE
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/README.md
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/copy-sync/copy-sync.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/copy-sync/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/copy/copy.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/copy/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/empty/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/ensure/file.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/ensure/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/ensure/link.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/ensure/symlink-paths.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/ensure/symlink-type.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/ensure/symlink.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/fs/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/json/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/json/jsonfile.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/json/output-json-sync.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/json/output-json.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/mkdirs/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/mkdirs/mkdirs-sync.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/mkdirs/mkdirs.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/mkdirs/win32.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/move-sync/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/move-sync/move-sync.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/move/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/move/move.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/output/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/path-exists/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/remove/index.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/remove/rimraf.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/util/buffer.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/util/stat.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/lib/util/utimes.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/fs-extra/package.json
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/semver/CHANGELOG.md
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/semver/LICENSE
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/semver/README.md
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/semver/bin/semver.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/semver/package.json
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/semver/range.bnf
+%%DATADIR%%/resources/app/node_modules/@electron/get/node_modules/semver/semver.js
+%%DATADIR%%/resources/app/node_modules/@electron/get/package.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/.github/.stale.yml
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/.github/dependabot.yml
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/.github/tests_checker.yml
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/.github/workflows/ci.yml
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/.taprc
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/LICENSE
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/README.md
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/benchmark/small-object.mjs
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/index.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/lib/default-ajv-options.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/lib/serializer-compiler.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/lib/validator-compiler.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/LICENSE
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/README.md
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/dist/formats.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/dist/formats.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/dist/formats.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/dist/index.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/dist/index.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/dist/index.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/dist/limit.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/dist/limit.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/dist/limit.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/package.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/src/formats.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/src/index.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv-formats/src/limit.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/.runkit_example.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/LICENSE
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/README.md
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/2019.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/2019.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/2019.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/2020.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/2020.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/2020.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/ajv.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/ajv.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/ajv.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/codegen/code.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/codegen/code.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/codegen/code.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/codegen/index.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/codegen/index.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/codegen/index.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/codegen/scope.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/codegen/scope.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/codegen/scope.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/errors.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/errors.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/errors.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/index.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/index.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/index.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/jtd/parse.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/jtd/parse.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/jtd/parse.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/jtd/serialize.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/jtd/serialize.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/jtd/serialize.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/jtd/types.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/jtd/types.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/jtd/types.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/names.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/names.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/names.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/ref_error.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/ref_error.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/ref_error.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/resolve.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/resolve.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/resolve.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/rules.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/rules.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/rules.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/util.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/util.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/util.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/applicability.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/applicability.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/applicability.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/boolSchema.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/boolSchema.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/boolSchema.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/dataType.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/dataType.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/dataType.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/defaults.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/defaults.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/defaults.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/index.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/index.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/index.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/keyword.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/keyword.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/keyword.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/subschema.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/subschema.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/compile/validate/subschema.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/core.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/core.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/core.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/jtd.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/jtd.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/jtd.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/data.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2019-09/index.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/index.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-draft-06.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-draft-07.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/json-schema-secure.json
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/jtd-schema.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/jtd-schema.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/refs/jtd-schema.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/equal.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/equal.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/equal.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/parseJson.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/parseJson.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/parseJson.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/quote.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/quote.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/quote.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/re2.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/re2.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/re2.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/timestamp.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/timestamp.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/timestamp.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/ucs2length.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/ucs2length.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/ucs2length.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/uri.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/uri.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/uri.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/validation_error.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/validation_error.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/runtime/validation_error.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/standalone/index.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/standalone/index.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/standalone/index.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/standalone/instance.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/standalone/instance.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/standalone/instance.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/types/index.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/types/index.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/types/index.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/types/json-schema.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/types/json-schema.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/types/json-schema.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/types/jtd-schema.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/types/jtd-schema.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/types/jtd-schema.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts
+%%DATADIR%%/resources/app/node_modules/@fastify/ajv-compiler/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js
*** 6927 LINES SKIPPED ***