diff --git a/host/next/docker/Dockerfile b/host/Dockerfile similarity index 93% rename from host/next/docker/Dockerfile rename to host/Dockerfile index b108c45..75a9838 100644 --- a/host/next/docker/Dockerfile +++ b/host/Dockerfile @@ -40,11 +40,13 @@ ENV NEXT_TELEMETRY_DISABLED=1 # non-root user RUN addgroup -S nodejs -g 1001 && adduser -S nextjs -u 1001 COPY --from=builder /app/apps/next/public ./public +RUN mkdir .next && chown -R nextjs:nodejs .next RUN mkdir -p .next/cache && chown -R nextjs:nodejs .next # Next standalone output COPY --from=builder /app/apps/next/.next/standalone ./ COPY --from=builder /app/apps/next/.next/static ./.next/static +COPY --from=builder /app/node_modules ./node_modules USER nextjs EXPOSE 3000 diff --git a/host/convex/docker/compose.yml b/host/compose.yml similarity index 81% rename from host/convex/docker/compose.yml rename to host/compose.yml index ddc9390..b8c4a7b 100644 --- a/host/convex/docker/compose.yml +++ b/host/compose.yml @@ -1,7 +1,23 @@ networks: - nginx-bridge: # Change this one line to match your network name in env file. + nginx-bridge: # You need to change this line to your defined network is as well external: true + services: + techtracker-next: + build: + context: ../ + dockerfile: ./docker/Dockerfile + image: ${CONTAINER_NAME}:alpine + container_name: ${CONTAINER_NAME} + env_file: [.env] + hostname: ${CONTAINER_NAME} + domainname: ${DOMAIN_NAME} + networks: ['${NETWORK:-nginx-bridge}'] + #ports: ['${PORT}:3000'] + depends_on: ['convex-backend'] + tty: true + stdin_open: true + restart: unless-stopped convex-backend: image: ghcr.io/get-convex/convex-backend:${BACKEND_TAG:-00bd92723422f3bff968230c94ccdeb8c1719832} container_name: ${BACKEND_CONTAINER_NAME:-convex-backend} @@ -31,7 +47,6 @@ services: start_period: 10s stop_grace_period: 10s stop_signal: SIGINT - convex-dashboard: image: ghcr.io/get-convex/convex-dashboard:${DASHBOARD_TAG:-33cef775a8a6228cbacee4a09ac2c4073d62ed13} container_name: ${DASHBOARD_CONTAINER_NAME:-convex-dashboard} @@ -52,4 +67,3 @@ services: restart: unless-stopped stop_grace_period: 10s stop_signal: SIGINT - diff --git a/host/convex/update b/host/convex/update deleted file mode 100755 index f4b2899..0000000 --- a/host/convex/update +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env bash -set -e # Exit immediately if a command exits with a non-zero status. - -# --- Configuration --- -COMPOSE_FILE="./host/convex/docker/compose.yml" -DEFAULT_PROJECT_NAME="techtracker" -DEV_PROJECT_NAME="dev-techtracker" # The project name for dev mode - -COMPOSE_PROJECT_FLAG=${DEFAULT_PROJECT_NAME} # This will hold "-p dev-techtracker" if --dev is used - -# --- Function to display usage --- -usage() { - echo "Usage: $0 [OPTIONS]" - echo "Or: ./update.sh [OPTIONS]" # Assuming the script is named update.sh - echo "" - echo "Options:" - echo " -d, --dev Run in development mode, using project name '${DEV_PROJECT_NAME}'." - echo " Adds '-p ${DEV_PROJECT_NAME}' to docker compose commands." - echo " -h, --help Display this help message." - exit 1 -} - -# --- Parse arguments --- -while [[ "$#" -gt 0 ]]; do - case "$1" in - -d|--dev) - COMPOSE_PROJECT_FLAG=${DEV_PROJECT_NAME} - shift # Consume the argument - ;; - -h|--help) - usage - ;; - *) - echo "Error: Unknown argument '$1'" >&2 - usage - ;; - esac -done - -# --- Main Script Logic --- -echo "--- Pulling latest git changes ---" -git pull -echo "--- Building Docker Compose services ${COMPOSE_PROJECT_FLAG} ---" -sudo docker compose -p ${COMPOSE_PROJECT_FLAG} -f "${COMPOSE_FILE}" build -echo "--- Bringing down Docker Compose services ${COMPOSE_PROJECT_FLAG} ---" -sudo docker compose -p ${COMPOSE_PROJECT_FLAG} -f "${COMPOSE_FILE}" down -echo "--- Bringing up Docker Compose services ${COMPOSE_PROJECT_FLAG} in detached mode ---" -sudo docker compose -p ${COMPOSE_PROJECT_FLAG} -f "${COMPOSE_FILE}" up -d -echo "--- Script finished successfully ---" diff --git a/host/data/credentials/instance_name b/host/data/credentials/instance_name new file mode 100644 index 0000000..0433d4c --- /dev/null +++ b/host/data/credentials/instance_name @@ -0,0 +1 @@ +Convex.gib diff --git a/host/data/credentials/instance_secret b/host/data/credentials/instance_secret new file mode 100644 index 0000000..d64571f --- /dev/null +++ b/host/data/credentials/instance_secret @@ -0,0 +1 @@ +d35a9c02aeef0070fac3069d51ac4926744b251d0e6d97dc239d78bce67959b6 diff --git a/host/data/db.sqlite3 b/host/data/db.sqlite3 new file mode 100644 index 0000000..ccd3951 Binary files /dev/null and b/host/data/db.sqlite3 differ diff --git a/host/data/storage/files/0b1df07b-d44f-4db3-9dc7-7832dbf15222.blob b/host/data/storage/files/0b1df07b-d44f-4db3-9dc7-7832dbf15222.blob new file mode 100644 index 0000000..d383a97 Binary files /dev/null and b/host/data/storage/files/0b1df07b-d44f-4db3-9dc7-7832dbf15222.blob differ diff --git a/host/data/storage/files/10f3b539-43f5-4181-86e7-69bdd37578cf.blob b/host/data/storage/files/10f3b539-43f5-4181-86e7-69bdd37578cf.blob new file mode 100644 index 0000000..8295e73 Binary files /dev/null and b/host/data/storage/files/10f3b539-43f5-4181-86e7-69bdd37578cf.blob differ diff --git a/host/data/storage/files/2e56ed98-fa59-42fd-9408-94ea7c4b0a06.blob b/host/data/storage/files/2e56ed98-fa59-42fd-9408-94ea7c4b0a06.blob new file mode 100644 index 0000000..d383a97 Binary files /dev/null and b/host/data/storage/files/2e56ed98-fa59-42fd-9408-94ea7c4b0a06.blob differ diff --git a/host/data/storage/files/57ca24f2-4e3c-4552-8640-8759ff86c911.blob b/host/data/storage/files/57ca24f2-4e3c-4552-8640-8759ff86c911.blob new file mode 100644 index 0000000..544c712 Binary files /dev/null and b/host/data/storage/files/57ca24f2-4e3c-4552-8640-8759ff86c911.blob differ diff --git a/host/data/storage/files/71742492-4679-45c9-b21a-f57e81e727ac.blob b/host/data/storage/files/71742492-4679-45c9-b21a-f57e81e727ac.blob new file mode 100644 index 0000000..8295e73 Binary files /dev/null and b/host/data/storage/files/71742492-4679-45c9-b21a-f57e81e727ac.blob differ diff --git a/host/data/storage/files/794bb5b6-f90b-4d09-bc88-023039402bba.blob b/host/data/storage/files/794bb5b6-f90b-4d09-bc88-023039402bba.blob new file mode 100644 index 0000000..b1fab04 Binary files /dev/null and b/host/data/storage/files/794bb5b6-f90b-4d09-bc88-023039402bba.blob differ diff --git a/host/data/storage/files/7ef90092-13dd-4f02-a0a5-a8a173c17520.blob b/host/data/storage/files/7ef90092-13dd-4f02-a0a5-a8a173c17520.blob new file mode 100644 index 0000000..6b77453 Binary files /dev/null and b/host/data/storage/files/7ef90092-13dd-4f02-a0a5-a8a173c17520.blob differ diff --git a/host/data/storage/files/9a1b0174-5502-4ebc-a886-141e468a651c.blob b/host/data/storage/files/9a1b0174-5502-4ebc-a886-141e468a651c.blob new file mode 100644 index 0000000..b0f6cb0 Binary files /dev/null and b/host/data/storage/files/9a1b0174-5502-4ebc-a886-141e468a651c.blob differ diff --git a/host/data/storage/files/a50c10e1-f207-4c24-9058-2e324fb4b952.blob b/host/data/storage/files/a50c10e1-f207-4c24-9058-2e324fb4b952.blob new file mode 100644 index 0000000..0a7c372 Binary files /dev/null and b/host/data/storage/files/a50c10e1-f207-4c24-9058-2e324fb4b952.blob differ diff --git a/host/data/storage/files/ba8e7859-5a6d-4a9d-9ef9-23744e50273d.blob b/host/data/storage/files/ba8e7859-5a6d-4a9d-9ef9-23744e50273d.blob new file mode 100644 index 0000000..b801f7c Binary files /dev/null and b/host/data/storage/files/ba8e7859-5a6d-4a9d-9ef9-23744e50273d.blob differ diff --git a/host/data/storage/files/baf15826-60cf-41a4-8b30-70f622f87b5f.blob b/host/data/storage/files/baf15826-60cf-41a4-8b30-70f622f87b5f.blob new file mode 100644 index 0000000..2388a03 Binary files /dev/null and b/host/data/storage/files/baf15826-60cf-41a4-8b30-70f622f87b5f.blob differ diff --git a/host/data/storage/files/d6ff8a98-8acf-4427-be3a-be6b5fcccb8a.blob b/host/data/storage/files/d6ff8a98-8acf-4427-be3a-be6b5fcccb8a.blob new file mode 100644 index 0000000..adfcf81 Binary files /dev/null and b/host/data/storage/files/d6ff8a98-8acf-4427-be3a-be6b5fcccb8a.blob differ diff --git a/host/data/storage/modules/00698dc4-86c0-4e9a-bd2b-2a65043e386f.blob b/host/data/storage/modules/00698dc4-86c0-4e9a-bd2b-2a65043e386f.blob new file mode 100644 index 0000000..ab24ea1 Binary files /dev/null and b/host/data/storage/modules/00698dc4-86c0-4e9a-bd2b-2a65043e386f.blob differ diff --git a/host/data/storage/modules/00f2f0bf-352f-4e86-924b-6b8ce4cf9097.blob b/host/data/storage/modules/00f2f0bf-352f-4e86-924b-6b8ce4cf9097.blob new file mode 100644 index 0000000..8a50357 Binary files /dev/null and b/host/data/storage/modules/00f2f0bf-352f-4e86-924b-6b8ce4cf9097.blob differ diff --git a/host/data/storage/modules/02c22ea9-9ffa-4f02-aa69-0194271b6e78.blob b/host/data/storage/modules/02c22ea9-9ffa-4f02-aa69-0194271b6e78.blob new file mode 100644 index 0000000..26c072a Binary files /dev/null and b/host/data/storage/modules/02c22ea9-9ffa-4f02-aa69-0194271b6e78.blob differ diff --git a/host/data/storage/modules/0343c68b-2931-4bb3-b745-8751b3969d84.blob b/host/data/storage/modules/0343c68b-2931-4bb3-b745-8751b3969d84.blob new file mode 100644 index 0000000..cb5e75f Binary files /dev/null and b/host/data/storage/modules/0343c68b-2931-4bb3-b745-8751b3969d84.blob differ diff --git a/host/data/storage/modules/03a36b3d-c8df-42bb-8e76-d0c428a33348.blob b/host/data/storage/modules/03a36b3d-c8df-42bb-8e76-d0c428a33348.blob new file mode 100644 index 0000000..f2910a3 Binary files /dev/null and b/host/data/storage/modules/03a36b3d-c8df-42bb-8e76-d0c428a33348.blob differ diff --git a/host/data/storage/modules/053b9f8c-719f-430c-b8be-45d6ef861fb1.blob b/host/data/storage/modules/053b9f8c-719f-430c-b8be-45d6ef861fb1.blob new file mode 100644 index 0000000..f99b35c Binary files /dev/null and b/host/data/storage/modules/053b9f8c-719f-430c-b8be-45d6ef861fb1.blob differ diff --git a/host/data/storage/modules/058f3605-ccad-47f2-8026-c4a823bd4504.blob b/host/data/storage/modules/058f3605-ccad-47f2-8026-c4a823bd4504.blob new file mode 100644 index 0000000..a313e3d Binary files /dev/null and b/host/data/storage/modules/058f3605-ccad-47f2-8026-c4a823bd4504.blob differ diff --git a/host/data/storage/modules/07a31d17-be63-42ec-adcf-5ce1972f6aa8.blob b/host/data/storage/modules/07a31d17-be63-42ec-adcf-5ce1972f6aa8.blob new file mode 100644 index 0000000..01f2e18 Binary files /dev/null and b/host/data/storage/modules/07a31d17-be63-42ec-adcf-5ce1972f6aa8.blob differ diff --git a/host/data/storage/modules/09c7f91c-4fbb-46d9-8a39-88dba8c1d6c0.blob b/host/data/storage/modules/09c7f91c-4fbb-46d9-8a39-88dba8c1d6c0.blob new file mode 100644 index 0000000..2b9e364 Binary files /dev/null and b/host/data/storage/modules/09c7f91c-4fbb-46d9-8a39-88dba8c1d6c0.blob differ diff --git a/host/data/storage/modules/09cc647d-19c7-4437-8e32-d30c8db61ce5.blob b/host/data/storage/modules/09cc647d-19c7-4437-8e32-d30c8db61ce5.blob new file mode 100644 index 0000000..7b421fd Binary files /dev/null and b/host/data/storage/modules/09cc647d-19c7-4437-8e32-d30c8db61ce5.blob differ diff --git a/host/data/storage/modules/09e149da-10bc-411d-a79b-15178ab26375.blob b/host/data/storage/modules/09e149da-10bc-411d-a79b-15178ab26375.blob new file mode 100644 index 0000000..8e20464 Binary files /dev/null and b/host/data/storage/modules/09e149da-10bc-411d-a79b-15178ab26375.blob differ diff --git a/host/data/storage/modules/0a2be251-919c-448e-9113-185f1d0ec415.blob b/host/data/storage/modules/0a2be251-919c-448e-9113-185f1d0ec415.blob new file mode 100644 index 0000000..a8ef0b2 Binary files /dev/null and b/host/data/storage/modules/0a2be251-919c-448e-9113-185f1d0ec415.blob differ diff --git a/host/data/storage/modules/0a654896-a49a-481a-b87d-e399d4bb38fc.blob b/host/data/storage/modules/0a654896-a49a-481a-b87d-e399d4bb38fc.blob new file mode 100644 index 0000000..d79ca9f Binary files /dev/null and b/host/data/storage/modules/0a654896-a49a-481a-b87d-e399d4bb38fc.blob differ diff --git a/host/data/storage/modules/0c55ba4f-b8d2-4052-bbd0-34cd5e9cddc6.blob b/host/data/storage/modules/0c55ba4f-b8d2-4052-bbd0-34cd5e9cddc6.blob new file mode 100644 index 0000000..1e36023 Binary files /dev/null and b/host/data/storage/modules/0c55ba4f-b8d2-4052-bbd0-34cd5e9cddc6.blob differ diff --git a/host/data/storage/modules/0cd2098e-f39b-409a-8aed-7cbebb870ab0.blob b/host/data/storage/modules/0cd2098e-f39b-409a-8aed-7cbebb870ab0.blob new file mode 100644 index 0000000..d8ab3f1 Binary files /dev/null and b/host/data/storage/modules/0cd2098e-f39b-409a-8aed-7cbebb870ab0.blob differ diff --git a/host/data/storage/modules/0d31590a-c62c-415d-9ec4-b3e167e67a70.blob b/host/data/storage/modules/0d31590a-c62c-415d-9ec4-b3e167e67a70.blob new file mode 100644 index 0000000..06992b2 Binary files /dev/null and b/host/data/storage/modules/0d31590a-c62c-415d-9ec4-b3e167e67a70.blob differ diff --git a/host/data/storage/modules/0d91b9ca-886c-4b5e-abef-1007c9ad9436.blob b/host/data/storage/modules/0d91b9ca-886c-4b5e-abef-1007c9ad9436.blob new file mode 100644 index 0000000..4599d6d Binary files /dev/null and b/host/data/storage/modules/0d91b9ca-886c-4b5e-abef-1007c9ad9436.blob differ diff --git a/host/data/storage/modules/0da02736-2f65-4195-9559-bd4a4f33dab3.blob b/host/data/storage/modules/0da02736-2f65-4195-9559-bd4a4f33dab3.blob new file mode 100644 index 0000000..eaff599 Binary files /dev/null and b/host/data/storage/modules/0da02736-2f65-4195-9559-bd4a4f33dab3.blob differ diff --git a/host/data/storage/modules/0da0dab9-8f9f-4acb-ab05-b9f7c0259c0e.blob b/host/data/storage/modules/0da0dab9-8f9f-4acb-ab05-b9f7c0259c0e.blob new file mode 100644 index 0000000..a459fa5 Binary files /dev/null and b/host/data/storage/modules/0da0dab9-8f9f-4acb-ab05-b9f7c0259c0e.blob differ diff --git a/host/data/storage/modules/0e484b5e-7b1a-43ec-87b4-4b39b109ff06.blob b/host/data/storage/modules/0e484b5e-7b1a-43ec-87b4-4b39b109ff06.blob new file mode 100644 index 0000000..a7c6f1f Binary files /dev/null and b/host/data/storage/modules/0e484b5e-7b1a-43ec-87b4-4b39b109ff06.blob differ diff --git a/host/data/storage/modules/101e4e4d-ec32-43c8-a4af-74c2f9fdc8df.blob b/host/data/storage/modules/101e4e4d-ec32-43c8-a4af-74c2f9fdc8df.blob new file mode 100644 index 0000000..bddf802 Binary files /dev/null and b/host/data/storage/modules/101e4e4d-ec32-43c8-a4af-74c2f9fdc8df.blob differ diff --git a/host/data/storage/modules/102f7427-818c-42a8-ab4e-fd134b09dcac.blob b/host/data/storage/modules/102f7427-818c-42a8-ab4e-fd134b09dcac.blob new file mode 100644 index 0000000..3010fc3 Binary files /dev/null and b/host/data/storage/modules/102f7427-818c-42a8-ab4e-fd134b09dcac.blob differ diff --git a/host/data/storage/modules/107cdb4b-9095-4076-b05c-e604377d787d.blob b/host/data/storage/modules/107cdb4b-9095-4076-b05c-e604377d787d.blob new file mode 100644 index 0000000..33343e4 Binary files /dev/null and b/host/data/storage/modules/107cdb4b-9095-4076-b05c-e604377d787d.blob differ diff --git a/host/data/storage/modules/1281da29-1e4a-44f9-899c-0a7416c66ef5.blob b/host/data/storage/modules/1281da29-1e4a-44f9-899c-0a7416c66ef5.blob new file mode 100644 index 0000000..a3844b2 Binary files /dev/null and b/host/data/storage/modules/1281da29-1e4a-44f9-899c-0a7416c66ef5.blob differ diff --git a/host/data/storage/modules/1311fae5-9739-41b7-970d-8c721a63ecce.blob b/host/data/storage/modules/1311fae5-9739-41b7-970d-8c721a63ecce.blob new file mode 100644 index 0000000..c9fddbe Binary files /dev/null and b/host/data/storage/modules/1311fae5-9739-41b7-970d-8c721a63ecce.blob differ diff --git a/host/data/storage/modules/1396866f-55c4-49d1-847b-d54a8f3143e8.blob b/host/data/storage/modules/1396866f-55c4-49d1-847b-d54a8f3143e8.blob new file mode 100644 index 0000000..2af5142 Binary files /dev/null and b/host/data/storage/modules/1396866f-55c4-49d1-847b-d54a8f3143e8.blob differ diff --git a/host/data/storage/modules/145d0298-f928-4e00-bf2a-807e387180a4.blob b/host/data/storage/modules/145d0298-f928-4e00-bf2a-807e387180a4.blob new file mode 100644 index 0000000..8cbf429 Binary files /dev/null and b/host/data/storage/modules/145d0298-f928-4e00-bf2a-807e387180a4.blob differ diff --git a/host/data/storage/modules/15d1336d-4d02-4abd-a0ac-347d409e0b8d.blob b/host/data/storage/modules/15d1336d-4d02-4abd-a0ac-347d409e0b8d.blob new file mode 100644 index 0000000..26add55 Binary files /dev/null and b/host/data/storage/modules/15d1336d-4d02-4abd-a0ac-347d409e0b8d.blob differ diff --git a/host/data/storage/modules/16204885-3e26-4345-9359-4abe9f4d7e30.blob b/host/data/storage/modules/16204885-3e26-4345-9359-4abe9f4d7e30.blob new file mode 100644 index 0000000..63fcbef Binary files /dev/null and b/host/data/storage/modules/16204885-3e26-4345-9359-4abe9f4d7e30.blob differ diff --git a/host/data/storage/modules/17e4ef85-53dc-49de-ae2a-3d2d82c3bfb8.blob b/host/data/storage/modules/17e4ef85-53dc-49de-ae2a-3d2d82c3bfb8.blob new file mode 100644 index 0000000..3377b07 Binary files /dev/null and b/host/data/storage/modules/17e4ef85-53dc-49de-ae2a-3d2d82c3bfb8.blob differ diff --git a/host/data/storage/modules/1cd7d1d0-0c50-40d2-ba50-d4c35005df22.blob b/host/data/storage/modules/1cd7d1d0-0c50-40d2-ba50-d4c35005df22.blob new file mode 100644 index 0000000..231ea13 Binary files /dev/null and b/host/data/storage/modules/1cd7d1d0-0c50-40d2-ba50-d4c35005df22.blob differ diff --git a/host/data/storage/modules/1d7f4e26-ac7a-4700-a261-60a54e879401.blob b/host/data/storage/modules/1d7f4e26-ac7a-4700-a261-60a54e879401.blob new file mode 100644 index 0000000..bfaff1c Binary files /dev/null and b/host/data/storage/modules/1d7f4e26-ac7a-4700-a261-60a54e879401.blob differ diff --git a/host/data/storage/modules/1dbf06c0-9dde-4518-9637-349f7ca3172f.blob b/host/data/storage/modules/1dbf06c0-9dde-4518-9637-349f7ca3172f.blob new file mode 100644 index 0000000..576da61 Binary files /dev/null and b/host/data/storage/modules/1dbf06c0-9dde-4518-9637-349f7ca3172f.blob differ diff --git a/host/data/storage/modules/1eda0e91-19ab-4ba9-acd5-67dfeedd80a9.blob b/host/data/storage/modules/1eda0e91-19ab-4ba9-acd5-67dfeedd80a9.blob new file mode 100644 index 0000000..d5f38fb Binary files /dev/null and b/host/data/storage/modules/1eda0e91-19ab-4ba9-acd5-67dfeedd80a9.blob differ diff --git a/host/data/storage/modules/1f3a1fc4-e613-49ba-9f16-ed1a55801a6d.blob b/host/data/storage/modules/1f3a1fc4-e613-49ba-9f16-ed1a55801a6d.blob new file mode 100644 index 0000000..69dfb33 Binary files /dev/null and b/host/data/storage/modules/1f3a1fc4-e613-49ba-9f16-ed1a55801a6d.blob differ diff --git a/host/data/storage/modules/1fec24f8-1914-48a5-976e-696a9d8b4cc3.blob b/host/data/storage/modules/1fec24f8-1914-48a5-976e-696a9d8b4cc3.blob new file mode 100644 index 0000000..b8f532a Binary files /dev/null and b/host/data/storage/modules/1fec24f8-1914-48a5-976e-696a9d8b4cc3.blob differ diff --git a/host/data/storage/modules/2102f01f-d732-45fc-92ff-88ace9a7266b.blob b/host/data/storage/modules/2102f01f-d732-45fc-92ff-88ace9a7266b.blob new file mode 100644 index 0000000..09de445 Binary files /dev/null and b/host/data/storage/modules/2102f01f-d732-45fc-92ff-88ace9a7266b.blob differ diff --git a/host/data/storage/modules/2123e695-6dae-4c76-bd18-512198c74170.blob b/host/data/storage/modules/2123e695-6dae-4c76-bd18-512198c74170.blob new file mode 100644 index 0000000..ad70a8e Binary files /dev/null and b/host/data/storage/modules/2123e695-6dae-4c76-bd18-512198c74170.blob differ diff --git a/host/data/storage/modules/21aafd7b-1471-4cce-98f3-536b2bc5c9fe.blob b/host/data/storage/modules/21aafd7b-1471-4cce-98f3-536b2bc5c9fe.blob new file mode 100644 index 0000000..bc273be Binary files /dev/null and b/host/data/storage/modules/21aafd7b-1471-4cce-98f3-536b2bc5c9fe.blob differ diff --git a/host/data/storage/modules/22abdaf8-0fc2-4c55-b3bd-ae19b4a26207.blob b/host/data/storage/modules/22abdaf8-0fc2-4c55-b3bd-ae19b4a26207.blob new file mode 100644 index 0000000..579f29b Binary files /dev/null and b/host/data/storage/modules/22abdaf8-0fc2-4c55-b3bd-ae19b4a26207.blob differ diff --git a/host/data/storage/modules/233b4381-c746-4253-9c5e-f82956575733.blob b/host/data/storage/modules/233b4381-c746-4253-9c5e-f82956575733.blob new file mode 100644 index 0000000..80536bf Binary files /dev/null and b/host/data/storage/modules/233b4381-c746-4253-9c5e-f82956575733.blob differ diff --git a/host/data/storage/modules/235498de-fa56-42ec-8141-1fa9b1a93dfe.blob b/host/data/storage/modules/235498de-fa56-42ec-8141-1fa9b1a93dfe.blob new file mode 100644 index 0000000..d705f8a Binary files /dev/null and b/host/data/storage/modules/235498de-fa56-42ec-8141-1fa9b1a93dfe.blob differ diff --git a/host/data/storage/modules/236edd3e-09ee-40c0-9dde-96bbbe9c0cb5.blob b/host/data/storage/modules/236edd3e-09ee-40c0-9dde-96bbbe9c0cb5.blob new file mode 100644 index 0000000..1a65529 Binary files /dev/null and b/host/data/storage/modules/236edd3e-09ee-40c0-9dde-96bbbe9c0cb5.blob differ diff --git a/host/data/storage/modules/258d0806-abee-4c23-ae08-8f81454fec18.blob b/host/data/storage/modules/258d0806-abee-4c23-ae08-8f81454fec18.blob new file mode 100644 index 0000000..8454123 Binary files /dev/null and b/host/data/storage/modules/258d0806-abee-4c23-ae08-8f81454fec18.blob differ diff --git a/host/data/storage/modules/25c78a0d-9476-4d2d-9f63-31b9045815c8.blob b/host/data/storage/modules/25c78a0d-9476-4d2d-9f63-31b9045815c8.blob new file mode 100644 index 0000000..6758d8f Binary files /dev/null and b/host/data/storage/modules/25c78a0d-9476-4d2d-9f63-31b9045815c8.blob differ diff --git a/host/data/storage/modules/29829217-b771-4acb-8ad0-5da218153a02.blob b/host/data/storage/modules/29829217-b771-4acb-8ad0-5da218153a02.blob new file mode 100644 index 0000000..6025cef Binary files /dev/null and b/host/data/storage/modules/29829217-b771-4acb-8ad0-5da218153a02.blob differ diff --git a/host/data/storage/modules/29ca7eb3-cdfc-4bb9-8db5-cecfc6aa5a83.blob b/host/data/storage/modules/29ca7eb3-cdfc-4bb9-8db5-cecfc6aa5a83.blob new file mode 100644 index 0000000..7015ad2 Binary files /dev/null and b/host/data/storage/modules/29ca7eb3-cdfc-4bb9-8db5-cecfc6aa5a83.blob differ diff --git a/host/data/storage/modules/2b045f9f-b770-4dc1-befe-804a43c4f1ae.blob b/host/data/storage/modules/2b045f9f-b770-4dc1-befe-804a43c4f1ae.blob new file mode 100644 index 0000000..e9d9b45 Binary files /dev/null and b/host/data/storage/modules/2b045f9f-b770-4dc1-befe-804a43c4f1ae.blob differ diff --git a/host/data/storage/modules/2cbe777a-92cb-4dba-aab3-c2b34451f4e6.blob b/host/data/storage/modules/2cbe777a-92cb-4dba-aab3-c2b34451f4e6.blob new file mode 100644 index 0000000..8bdf98b Binary files /dev/null and b/host/data/storage/modules/2cbe777a-92cb-4dba-aab3-c2b34451f4e6.blob differ diff --git a/host/data/storage/modules/2cdc2377-1305-4516-822a-d35e9541005e.blob b/host/data/storage/modules/2cdc2377-1305-4516-822a-d35e9541005e.blob new file mode 100644 index 0000000..d9fbd7f Binary files /dev/null and b/host/data/storage/modules/2cdc2377-1305-4516-822a-d35e9541005e.blob differ diff --git a/host/data/storage/modules/2e949cf3-4214-4f68-8cfc-c80dac44d422.blob b/host/data/storage/modules/2e949cf3-4214-4f68-8cfc-c80dac44d422.blob new file mode 100644 index 0000000..3bd474d Binary files /dev/null and b/host/data/storage/modules/2e949cf3-4214-4f68-8cfc-c80dac44d422.blob differ diff --git a/host/data/storage/modules/2f67b913-b389-4414-bac8-16afbbe244c9.blob b/host/data/storage/modules/2f67b913-b389-4414-bac8-16afbbe244c9.blob new file mode 100644 index 0000000..3c2ba17 Binary files /dev/null and b/host/data/storage/modules/2f67b913-b389-4414-bac8-16afbbe244c9.blob differ diff --git a/host/data/storage/modules/30656a0c-8f92-440a-8e21-f0fdf8f6c5c9.blob b/host/data/storage/modules/30656a0c-8f92-440a-8e21-f0fdf8f6c5c9.blob new file mode 100644 index 0000000..f93b1bc Binary files /dev/null and b/host/data/storage/modules/30656a0c-8f92-440a-8e21-f0fdf8f6c5c9.blob differ diff --git a/host/data/storage/modules/31377901-a8cf-47ad-8e84-2f20b49d5362.blob b/host/data/storage/modules/31377901-a8cf-47ad-8e84-2f20b49d5362.blob new file mode 100644 index 0000000..c2f1aab Binary files /dev/null and b/host/data/storage/modules/31377901-a8cf-47ad-8e84-2f20b49d5362.blob differ diff --git a/host/data/storage/modules/3276f572-0d3c-4759-b565-2986c4cf272c.blob b/host/data/storage/modules/3276f572-0d3c-4759-b565-2986c4cf272c.blob new file mode 100644 index 0000000..56b33a2 Binary files /dev/null and b/host/data/storage/modules/3276f572-0d3c-4759-b565-2986c4cf272c.blob differ diff --git a/host/data/storage/modules/32bc346e-2998-4bf6-8e41-52a6a57977dc.blob b/host/data/storage/modules/32bc346e-2998-4bf6-8e41-52a6a57977dc.blob new file mode 100644 index 0000000..8d4a547 Binary files /dev/null and b/host/data/storage/modules/32bc346e-2998-4bf6-8e41-52a6a57977dc.blob differ diff --git a/host/data/storage/modules/330bedda-147b-4b59-96c1-942a3fd2251d.blob b/host/data/storage/modules/330bedda-147b-4b59-96c1-942a3fd2251d.blob new file mode 100644 index 0000000..1360831 Binary files /dev/null and b/host/data/storage/modules/330bedda-147b-4b59-96c1-942a3fd2251d.blob differ diff --git a/host/data/storage/modules/331ed70c-24a7-4862-a727-4e77eb585bde.blob b/host/data/storage/modules/331ed70c-24a7-4862-a727-4e77eb585bde.blob new file mode 100644 index 0000000..7da6aa2 Binary files /dev/null and b/host/data/storage/modules/331ed70c-24a7-4862-a727-4e77eb585bde.blob differ diff --git a/host/data/storage/modules/33db6b1e-5c36-4392-9ceb-e8c740b4b035.blob b/host/data/storage/modules/33db6b1e-5c36-4392-9ceb-e8c740b4b035.blob new file mode 100644 index 0000000..10cd8df Binary files /dev/null and b/host/data/storage/modules/33db6b1e-5c36-4392-9ceb-e8c740b4b035.blob differ diff --git a/host/data/storage/modules/34982c16-d575-4d0e-beee-76ab08763369.blob b/host/data/storage/modules/34982c16-d575-4d0e-beee-76ab08763369.blob new file mode 100644 index 0000000..c35d804 Binary files /dev/null and b/host/data/storage/modules/34982c16-d575-4d0e-beee-76ab08763369.blob differ diff --git a/host/data/storage/modules/34b1deee-b7ab-4313-9a6c-9704ceecf7ff.blob b/host/data/storage/modules/34b1deee-b7ab-4313-9a6c-9704ceecf7ff.blob new file mode 100644 index 0000000..6e2a037 Binary files /dev/null and b/host/data/storage/modules/34b1deee-b7ab-4313-9a6c-9704ceecf7ff.blob differ diff --git a/host/data/storage/modules/361976a1-c940-4831-a996-c1e10c37216d.blob b/host/data/storage/modules/361976a1-c940-4831-a996-c1e10c37216d.blob new file mode 100644 index 0000000..c934a33 Binary files /dev/null and b/host/data/storage/modules/361976a1-c940-4831-a996-c1e10c37216d.blob differ diff --git a/host/data/storage/modules/383fbd28-547f-44e7-b8b0-dca59a37dc6b.blob b/host/data/storage/modules/383fbd28-547f-44e7-b8b0-dca59a37dc6b.blob new file mode 100644 index 0000000..ec3b01f Binary files /dev/null and b/host/data/storage/modules/383fbd28-547f-44e7-b8b0-dca59a37dc6b.blob differ diff --git a/host/data/storage/modules/39b5a090-da86-43de-88b7-782f0dd856ce.blob b/host/data/storage/modules/39b5a090-da86-43de-88b7-782f0dd856ce.blob new file mode 100644 index 0000000..99dbab3 Binary files /dev/null and b/host/data/storage/modules/39b5a090-da86-43de-88b7-782f0dd856ce.blob differ diff --git a/host/data/storage/modules/3b0e642a-7178-4c93-8e90-c449d67f174e.blob b/host/data/storage/modules/3b0e642a-7178-4c93-8e90-c449d67f174e.blob new file mode 100644 index 0000000..37a6e35 Binary files /dev/null and b/host/data/storage/modules/3b0e642a-7178-4c93-8e90-c449d67f174e.blob differ diff --git a/host/data/storage/modules/3b255a5d-5af8-417f-a212-4ba79ec79132.blob b/host/data/storage/modules/3b255a5d-5af8-417f-a212-4ba79ec79132.blob new file mode 100644 index 0000000..011099e Binary files /dev/null and b/host/data/storage/modules/3b255a5d-5af8-417f-a212-4ba79ec79132.blob differ diff --git a/host/data/storage/modules/3b82ea06-beef-4295-853c-f9eb79b4315f.blob b/host/data/storage/modules/3b82ea06-beef-4295-853c-f9eb79b4315f.blob new file mode 100644 index 0000000..6bf2f0f Binary files /dev/null and b/host/data/storage/modules/3b82ea06-beef-4295-853c-f9eb79b4315f.blob differ diff --git a/host/data/storage/modules/3c6ebf61-b5bf-496c-91fd-c47aefe6063e.blob b/host/data/storage/modules/3c6ebf61-b5bf-496c-91fd-c47aefe6063e.blob new file mode 100644 index 0000000..cc837d9 Binary files /dev/null and b/host/data/storage/modules/3c6ebf61-b5bf-496c-91fd-c47aefe6063e.blob differ diff --git a/host/data/storage/modules/3ca7a51f-6996-40e8-bc39-e8ad330df0f8.blob b/host/data/storage/modules/3ca7a51f-6996-40e8-bc39-e8ad330df0f8.blob new file mode 100644 index 0000000..52a019c Binary files /dev/null and b/host/data/storage/modules/3ca7a51f-6996-40e8-bc39-e8ad330df0f8.blob differ diff --git a/host/data/storage/modules/3de4e7cf-8be5-4759-ae91-928b44cb1dda.blob b/host/data/storage/modules/3de4e7cf-8be5-4759-ae91-928b44cb1dda.blob new file mode 100644 index 0000000..bca7de7 Binary files /dev/null and b/host/data/storage/modules/3de4e7cf-8be5-4759-ae91-928b44cb1dda.blob differ diff --git a/host/data/storage/modules/40beed59-7443-4b9f-893a-e1e0ff486b18.blob b/host/data/storage/modules/40beed59-7443-4b9f-893a-e1e0ff486b18.blob new file mode 100644 index 0000000..808d626 Binary files /dev/null and b/host/data/storage/modules/40beed59-7443-4b9f-893a-e1e0ff486b18.blob differ diff --git a/host/data/storage/modules/419dfa14-1d7a-4029-bba8-c237e9dfad5e.blob b/host/data/storage/modules/419dfa14-1d7a-4029-bba8-c237e9dfad5e.blob new file mode 100644 index 0000000..a1c23b1 Binary files /dev/null and b/host/data/storage/modules/419dfa14-1d7a-4029-bba8-c237e9dfad5e.blob differ diff --git a/host/data/storage/modules/426ab67a-1c3b-4326-88b1-d5e3014876b5.blob b/host/data/storage/modules/426ab67a-1c3b-4326-88b1-d5e3014876b5.blob new file mode 100644 index 0000000..7658b05 Binary files /dev/null and b/host/data/storage/modules/426ab67a-1c3b-4326-88b1-d5e3014876b5.blob differ diff --git a/host/data/storage/modules/43ff2705-3a8d-4548-ad6b-7762ff189de0.blob b/host/data/storage/modules/43ff2705-3a8d-4548-ad6b-7762ff189de0.blob new file mode 100644 index 0000000..d639b3a Binary files /dev/null and b/host/data/storage/modules/43ff2705-3a8d-4548-ad6b-7762ff189de0.blob differ diff --git a/host/data/storage/modules/442990b4-785f-48e1-b5aa-b6a841647251.blob b/host/data/storage/modules/442990b4-785f-48e1-b5aa-b6a841647251.blob new file mode 100644 index 0000000..b664135 Binary files /dev/null and b/host/data/storage/modules/442990b4-785f-48e1-b5aa-b6a841647251.blob differ diff --git a/host/data/storage/modules/457b0195-913a-4b15-93b3-4709495bc45a.blob b/host/data/storage/modules/457b0195-913a-4b15-93b3-4709495bc45a.blob new file mode 100644 index 0000000..0501f03 Binary files /dev/null and b/host/data/storage/modules/457b0195-913a-4b15-93b3-4709495bc45a.blob differ diff --git a/host/data/storage/modules/46877cf8-4d7b-47db-9950-1a34799da841.blob b/host/data/storage/modules/46877cf8-4d7b-47db-9950-1a34799da841.blob new file mode 100644 index 0000000..80112d7 Binary files /dev/null and b/host/data/storage/modules/46877cf8-4d7b-47db-9950-1a34799da841.blob differ diff --git a/host/data/storage/modules/4945eb1a-5629-49e4-b918-92257ef8db7d.blob b/host/data/storage/modules/4945eb1a-5629-49e4-b918-92257ef8db7d.blob new file mode 100644 index 0000000..40375b6 Binary files /dev/null and b/host/data/storage/modules/4945eb1a-5629-49e4-b918-92257ef8db7d.blob differ diff --git a/host/data/storage/modules/49f682a2-6652-41a1-8edc-e2fa223b1747.blob b/host/data/storage/modules/49f682a2-6652-41a1-8edc-e2fa223b1747.blob new file mode 100644 index 0000000..797ad87 Binary files /dev/null and b/host/data/storage/modules/49f682a2-6652-41a1-8edc-e2fa223b1747.blob differ diff --git a/host/data/storage/modules/4b2c1bb6-8dcd-4eb7-be92-cb054449ec37.blob b/host/data/storage/modules/4b2c1bb6-8dcd-4eb7-be92-cb054449ec37.blob new file mode 100644 index 0000000..f3cc6a1 Binary files /dev/null and b/host/data/storage/modules/4b2c1bb6-8dcd-4eb7-be92-cb054449ec37.blob differ diff --git a/host/data/storage/modules/4bb34166-3b49-4e0a-9ff4-262ef758e10a.blob b/host/data/storage/modules/4bb34166-3b49-4e0a-9ff4-262ef758e10a.blob new file mode 100644 index 0000000..4d1f1b4 Binary files /dev/null and b/host/data/storage/modules/4bb34166-3b49-4e0a-9ff4-262ef758e10a.blob differ diff --git a/host/data/storage/modules/4be30950-112c-4046-a83c-0611d6ec27bf.blob b/host/data/storage/modules/4be30950-112c-4046-a83c-0611d6ec27bf.blob new file mode 100644 index 0000000..25a6665 Binary files /dev/null and b/host/data/storage/modules/4be30950-112c-4046-a83c-0611d6ec27bf.blob differ diff --git a/host/data/storage/modules/4c1386f4-ed0d-4db1-a4b7-b505a3636eb1.blob b/host/data/storage/modules/4c1386f4-ed0d-4db1-a4b7-b505a3636eb1.blob new file mode 100644 index 0000000..c5a91d9 Binary files /dev/null and b/host/data/storage/modules/4c1386f4-ed0d-4db1-a4b7-b505a3636eb1.blob differ diff --git a/host/data/storage/modules/4c6e4e73-ff1b-46a7-b3d1-9a34ab0fd44a.blob b/host/data/storage/modules/4c6e4e73-ff1b-46a7-b3d1-9a34ab0fd44a.blob new file mode 100644 index 0000000..812c529 Binary files /dev/null and b/host/data/storage/modules/4c6e4e73-ff1b-46a7-b3d1-9a34ab0fd44a.blob differ diff --git a/host/data/storage/modules/4d2ab02b-8726-4cec-82cd-e12613facc3a.blob b/host/data/storage/modules/4d2ab02b-8726-4cec-82cd-e12613facc3a.blob new file mode 100644 index 0000000..a0fb2d6 Binary files /dev/null and b/host/data/storage/modules/4d2ab02b-8726-4cec-82cd-e12613facc3a.blob differ diff --git a/host/data/storage/modules/4de9c3a4-2722-4c23-ad20-ccfbbd3c0974.blob b/host/data/storage/modules/4de9c3a4-2722-4c23-ad20-ccfbbd3c0974.blob new file mode 100644 index 0000000..03b163b Binary files /dev/null and b/host/data/storage/modules/4de9c3a4-2722-4c23-ad20-ccfbbd3c0974.blob differ diff --git a/host/data/storage/modules/4eabb808-003a-4726-ad39-06a04cf5fa98.blob b/host/data/storage/modules/4eabb808-003a-4726-ad39-06a04cf5fa98.blob new file mode 100644 index 0000000..6301cf8 Binary files /dev/null and b/host/data/storage/modules/4eabb808-003a-4726-ad39-06a04cf5fa98.blob differ diff --git a/host/data/storage/modules/5063b464-4f58-4b4a-aa37-877b23509757.blob b/host/data/storage/modules/5063b464-4f58-4b4a-aa37-877b23509757.blob new file mode 100644 index 0000000..9c80cae Binary files /dev/null and b/host/data/storage/modules/5063b464-4f58-4b4a-aa37-877b23509757.blob differ diff --git a/host/data/storage/modules/50b56c57-7b9b-4bdc-9163-7afff1006ff1.blob b/host/data/storage/modules/50b56c57-7b9b-4bdc-9163-7afff1006ff1.blob new file mode 100644 index 0000000..7cf3db0 Binary files /dev/null and b/host/data/storage/modules/50b56c57-7b9b-4bdc-9163-7afff1006ff1.blob differ diff --git a/host/data/storage/modules/51166396-3919-4dc0-8e7a-ab4580c84104.blob b/host/data/storage/modules/51166396-3919-4dc0-8e7a-ab4580c84104.blob new file mode 100644 index 0000000..f348055 Binary files /dev/null and b/host/data/storage/modules/51166396-3919-4dc0-8e7a-ab4580c84104.blob differ diff --git a/host/data/storage/modules/5144887a-c3b0-471f-9b7c-37f9a3a1d0eb.blob b/host/data/storage/modules/5144887a-c3b0-471f-9b7c-37f9a3a1d0eb.blob new file mode 100644 index 0000000..bda1316 Binary files /dev/null and b/host/data/storage/modules/5144887a-c3b0-471f-9b7c-37f9a3a1d0eb.blob differ diff --git a/host/data/storage/modules/53cf7d17-713b-4446-aa91-119c65010253.blob b/host/data/storage/modules/53cf7d17-713b-4446-aa91-119c65010253.blob new file mode 100644 index 0000000..9f50c53 Binary files /dev/null and b/host/data/storage/modules/53cf7d17-713b-4446-aa91-119c65010253.blob differ diff --git a/host/data/storage/modules/5603fb30-ff94-4442-924b-54900e3045f7.blob b/host/data/storage/modules/5603fb30-ff94-4442-924b-54900e3045f7.blob new file mode 100644 index 0000000..81a601b Binary files /dev/null and b/host/data/storage/modules/5603fb30-ff94-4442-924b-54900e3045f7.blob differ diff --git a/host/data/storage/modules/5806b0b5-1bc8-44c4-b57d-d716c9439b5b.blob b/host/data/storage/modules/5806b0b5-1bc8-44c4-b57d-d716c9439b5b.blob new file mode 100644 index 0000000..364e23a Binary files /dev/null and b/host/data/storage/modules/5806b0b5-1bc8-44c4-b57d-d716c9439b5b.blob differ diff --git a/host/data/storage/modules/58949cfb-f75f-4691-a2e1-a94efccbff75.blob b/host/data/storage/modules/58949cfb-f75f-4691-a2e1-a94efccbff75.blob new file mode 100644 index 0000000..547c5c8 Binary files /dev/null and b/host/data/storage/modules/58949cfb-f75f-4691-a2e1-a94efccbff75.blob differ diff --git a/host/data/storage/modules/59d796fc-ea43-4edf-b668-b8cae69e0a21.blob b/host/data/storage/modules/59d796fc-ea43-4edf-b668-b8cae69e0a21.blob new file mode 100644 index 0000000..bf776ae Binary files /dev/null and b/host/data/storage/modules/59d796fc-ea43-4edf-b668-b8cae69e0a21.blob differ diff --git a/host/data/storage/modules/5a20bb74-fc58-4727-97f3-aebf623b1f44.blob b/host/data/storage/modules/5a20bb74-fc58-4727-97f3-aebf623b1f44.blob new file mode 100644 index 0000000..b19b1ed Binary files /dev/null and b/host/data/storage/modules/5a20bb74-fc58-4727-97f3-aebf623b1f44.blob differ diff --git a/host/data/storage/modules/5bb985ce-dba4-44d5-b438-7f74a84593c3.blob b/host/data/storage/modules/5bb985ce-dba4-44d5-b438-7f74a84593c3.blob new file mode 100644 index 0000000..e757992 Binary files /dev/null and b/host/data/storage/modules/5bb985ce-dba4-44d5-b438-7f74a84593c3.blob differ diff --git a/host/data/storage/modules/5c87c9f8-441f-40bd-88e0-728d7f3e3fc2.blob b/host/data/storage/modules/5c87c9f8-441f-40bd-88e0-728d7f3e3fc2.blob new file mode 100644 index 0000000..69d5008 Binary files /dev/null and b/host/data/storage/modules/5c87c9f8-441f-40bd-88e0-728d7f3e3fc2.blob differ diff --git a/host/data/storage/modules/5d18018f-ec8a-4ebc-9110-e09d8365d0e4.blob b/host/data/storage/modules/5d18018f-ec8a-4ebc-9110-e09d8365d0e4.blob new file mode 100644 index 0000000..063134b Binary files /dev/null and b/host/data/storage/modules/5d18018f-ec8a-4ebc-9110-e09d8365d0e4.blob differ diff --git a/host/data/storage/modules/5f23a664-f0db-47c3-b71e-5eb74a11bbee.blob b/host/data/storage/modules/5f23a664-f0db-47c3-b71e-5eb74a11bbee.blob new file mode 100644 index 0000000..0102ffd Binary files /dev/null and b/host/data/storage/modules/5f23a664-f0db-47c3-b71e-5eb74a11bbee.blob differ diff --git a/host/data/storage/modules/60026f0a-ebf0-4105-882a-ff3bf8f2e9d2.blob b/host/data/storage/modules/60026f0a-ebf0-4105-882a-ff3bf8f2e9d2.blob new file mode 100644 index 0000000..8839a26 Binary files /dev/null and b/host/data/storage/modules/60026f0a-ebf0-4105-882a-ff3bf8f2e9d2.blob differ diff --git a/host/data/storage/modules/60d1f7cb-e6dc-44df-86a1-6a488f1bb265.blob b/host/data/storage/modules/60d1f7cb-e6dc-44df-86a1-6a488f1bb265.blob new file mode 100644 index 0000000..0819edd Binary files /dev/null and b/host/data/storage/modules/60d1f7cb-e6dc-44df-86a1-6a488f1bb265.blob differ diff --git a/host/data/storage/modules/60f9e217-3591-4cdb-a301-84f6e35c0103.blob b/host/data/storage/modules/60f9e217-3591-4cdb-a301-84f6e35c0103.blob new file mode 100644 index 0000000..a4bbafd Binary files /dev/null and b/host/data/storage/modules/60f9e217-3591-4cdb-a301-84f6e35c0103.blob differ diff --git a/host/data/storage/modules/62984409-5547-4352-870a-d5394dceaab8.blob b/host/data/storage/modules/62984409-5547-4352-870a-d5394dceaab8.blob new file mode 100644 index 0000000..48e1c80 Binary files /dev/null and b/host/data/storage/modules/62984409-5547-4352-870a-d5394dceaab8.blob differ diff --git a/host/data/storage/modules/629bd26c-9fd2-4146-b78f-dd1d58f99789.blob b/host/data/storage/modules/629bd26c-9fd2-4146-b78f-dd1d58f99789.blob new file mode 100644 index 0000000..9fed685 Binary files /dev/null and b/host/data/storage/modules/629bd26c-9fd2-4146-b78f-dd1d58f99789.blob differ diff --git a/host/data/storage/modules/649d4de1-f66d-41fd-9998-70fa20746edc.blob b/host/data/storage/modules/649d4de1-f66d-41fd-9998-70fa20746edc.blob new file mode 100644 index 0000000..16637d0 Binary files /dev/null and b/host/data/storage/modules/649d4de1-f66d-41fd-9998-70fa20746edc.blob differ diff --git a/host/data/storage/modules/6639af3d-ffac-4221-ac90-aa8428739783.blob b/host/data/storage/modules/6639af3d-ffac-4221-ac90-aa8428739783.blob new file mode 100644 index 0000000..2d5c1c0 Binary files /dev/null and b/host/data/storage/modules/6639af3d-ffac-4221-ac90-aa8428739783.blob differ diff --git a/host/data/storage/modules/666fb68a-7d20-40b8-81e6-c6fe77dd1ec0.blob b/host/data/storage/modules/666fb68a-7d20-40b8-81e6-c6fe77dd1ec0.blob new file mode 100644 index 0000000..2487545 Binary files /dev/null and b/host/data/storage/modules/666fb68a-7d20-40b8-81e6-c6fe77dd1ec0.blob differ diff --git a/host/data/storage/modules/66e53a94-bb7c-450f-8039-7e770ecf0ae0.blob b/host/data/storage/modules/66e53a94-bb7c-450f-8039-7e770ecf0ae0.blob new file mode 100644 index 0000000..fe14303 Binary files /dev/null and b/host/data/storage/modules/66e53a94-bb7c-450f-8039-7e770ecf0ae0.blob differ diff --git a/host/data/storage/modules/66f4d56e-8945-44b2-8e73-a51d01e98651.blob b/host/data/storage/modules/66f4d56e-8945-44b2-8e73-a51d01e98651.blob new file mode 100644 index 0000000..8ed23e2 Binary files /dev/null and b/host/data/storage/modules/66f4d56e-8945-44b2-8e73-a51d01e98651.blob differ diff --git a/host/data/storage/modules/68a7ee43-82df-4f7e-b7ba-81539c580b68.blob b/host/data/storage/modules/68a7ee43-82df-4f7e-b7ba-81539c580b68.blob new file mode 100644 index 0000000..c3254b5 Binary files /dev/null and b/host/data/storage/modules/68a7ee43-82df-4f7e-b7ba-81539c580b68.blob differ diff --git a/host/data/storage/modules/68c3207e-c465-4175-a658-125c77d47f4c.blob b/host/data/storage/modules/68c3207e-c465-4175-a658-125c77d47f4c.blob new file mode 100644 index 0000000..a89933a Binary files /dev/null and b/host/data/storage/modules/68c3207e-c465-4175-a658-125c77d47f4c.blob differ diff --git a/host/data/storage/modules/68dbd75f-304d-49e2-b0d8-d177e9056a8a.blob b/host/data/storage/modules/68dbd75f-304d-49e2-b0d8-d177e9056a8a.blob new file mode 100644 index 0000000..9d1a709 Binary files /dev/null and b/host/data/storage/modules/68dbd75f-304d-49e2-b0d8-d177e9056a8a.blob differ diff --git a/host/data/storage/modules/69684e93-67de-4052-a17e-cf42cf7df044.blob b/host/data/storage/modules/69684e93-67de-4052-a17e-cf42cf7df044.blob new file mode 100644 index 0000000..2b589d2 Binary files /dev/null and b/host/data/storage/modules/69684e93-67de-4052-a17e-cf42cf7df044.blob differ diff --git a/host/data/storage/modules/6acb37c7-7098-4fcc-b8d4-06d4961fa654.blob b/host/data/storage/modules/6acb37c7-7098-4fcc-b8d4-06d4961fa654.blob new file mode 100644 index 0000000..95feb4b Binary files /dev/null and b/host/data/storage/modules/6acb37c7-7098-4fcc-b8d4-06d4961fa654.blob differ diff --git a/host/data/storage/modules/6afcd1c1-e108-4354-83eb-1f8cca7074eb.blob b/host/data/storage/modules/6afcd1c1-e108-4354-83eb-1f8cca7074eb.blob new file mode 100644 index 0000000..276565a Binary files /dev/null and b/host/data/storage/modules/6afcd1c1-e108-4354-83eb-1f8cca7074eb.blob differ diff --git a/host/data/storage/modules/6f220f71-4753-4dfe-824b-85bd9e24fab7.blob b/host/data/storage/modules/6f220f71-4753-4dfe-824b-85bd9e24fab7.blob new file mode 100644 index 0000000..73114dd Binary files /dev/null and b/host/data/storage/modules/6f220f71-4753-4dfe-824b-85bd9e24fab7.blob differ diff --git a/host/data/storage/modules/70da6606-fda0-40b6-80ad-1616f187cfeb.blob b/host/data/storage/modules/70da6606-fda0-40b6-80ad-1616f187cfeb.blob new file mode 100644 index 0000000..a048e76 Binary files /dev/null and b/host/data/storage/modules/70da6606-fda0-40b6-80ad-1616f187cfeb.blob differ diff --git a/host/data/storage/modules/7258b49f-b322-4d18-b00e-4c7d242afd55.blob b/host/data/storage/modules/7258b49f-b322-4d18-b00e-4c7d242afd55.blob new file mode 100644 index 0000000..3b33974 Binary files /dev/null and b/host/data/storage/modules/7258b49f-b322-4d18-b00e-4c7d242afd55.blob differ diff --git a/host/data/storage/modules/7296e720-2358-494b-8383-b36943a12db3.blob b/host/data/storage/modules/7296e720-2358-494b-8383-b36943a12db3.blob new file mode 100644 index 0000000..7178246 Binary files /dev/null and b/host/data/storage/modules/7296e720-2358-494b-8383-b36943a12db3.blob differ diff --git a/host/data/storage/modules/751c6a47-a444-4e16-952e-b62ddf7bba92.blob b/host/data/storage/modules/751c6a47-a444-4e16-952e-b62ddf7bba92.blob new file mode 100644 index 0000000..5361e08 Binary files /dev/null and b/host/data/storage/modules/751c6a47-a444-4e16-952e-b62ddf7bba92.blob differ diff --git a/host/data/storage/modules/760bd982-6f3a-4d83-a60b-e9a78f2c7939.blob b/host/data/storage/modules/760bd982-6f3a-4d83-a60b-e9a78f2c7939.blob new file mode 100644 index 0000000..04f4438 Binary files /dev/null and b/host/data/storage/modules/760bd982-6f3a-4d83-a60b-e9a78f2c7939.blob differ diff --git a/host/data/storage/modules/76d08afd-1b08-403d-b412-eae0ade17ac9.blob b/host/data/storage/modules/76d08afd-1b08-403d-b412-eae0ade17ac9.blob new file mode 100644 index 0000000..eadb9dd Binary files /dev/null and b/host/data/storage/modules/76d08afd-1b08-403d-b412-eae0ade17ac9.blob differ diff --git a/host/data/storage/modules/781bf5d3-88cf-4174-aae5-86d02b03787c.blob b/host/data/storage/modules/781bf5d3-88cf-4174-aae5-86d02b03787c.blob new file mode 100644 index 0000000..e8d58f4 Binary files /dev/null and b/host/data/storage/modules/781bf5d3-88cf-4174-aae5-86d02b03787c.blob differ diff --git a/host/data/storage/modules/782d93b1-7d30-4f56-9194-da927d21baa0.blob b/host/data/storage/modules/782d93b1-7d30-4f56-9194-da927d21baa0.blob new file mode 100644 index 0000000..07c6697 Binary files /dev/null and b/host/data/storage/modules/782d93b1-7d30-4f56-9194-da927d21baa0.blob differ diff --git a/host/data/storage/modules/7a9e7a22-f732-4cc0-a642-6dd47731a8a2.blob b/host/data/storage/modules/7a9e7a22-f732-4cc0-a642-6dd47731a8a2.blob new file mode 100644 index 0000000..b4f646a Binary files /dev/null and b/host/data/storage/modules/7a9e7a22-f732-4cc0-a642-6dd47731a8a2.blob differ diff --git a/host/data/storage/modules/7b368b6b-1642-475e-a4f7-4311e9ab244f.blob b/host/data/storage/modules/7b368b6b-1642-475e-a4f7-4311e9ab244f.blob new file mode 100644 index 0000000..5bc18b2 Binary files /dev/null and b/host/data/storage/modules/7b368b6b-1642-475e-a4f7-4311e9ab244f.blob differ diff --git a/host/data/storage/modules/7bc56e10-0e83-40b3-8b50-e75c919417e5.blob b/host/data/storage/modules/7bc56e10-0e83-40b3-8b50-e75c919417e5.blob new file mode 100644 index 0000000..1be9600 Binary files /dev/null and b/host/data/storage/modules/7bc56e10-0e83-40b3-8b50-e75c919417e5.blob differ diff --git a/host/data/storage/modules/7bdd258a-99a1-42db-b829-38684731edcb.blob b/host/data/storage/modules/7bdd258a-99a1-42db-b829-38684731edcb.blob new file mode 100644 index 0000000..33369bf Binary files /dev/null and b/host/data/storage/modules/7bdd258a-99a1-42db-b829-38684731edcb.blob differ diff --git a/host/data/storage/modules/7e7a756a-6ac2-434c-9f0f-839c94c56969.blob b/host/data/storage/modules/7e7a756a-6ac2-434c-9f0f-839c94c56969.blob new file mode 100644 index 0000000..e2c2ccb Binary files /dev/null and b/host/data/storage/modules/7e7a756a-6ac2-434c-9f0f-839c94c56969.blob differ diff --git a/host/data/storage/modules/7f074b17-56ed-47b4-92b7-e656effc0f75.blob b/host/data/storage/modules/7f074b17-56ed-47b4-92b7-e656effc0f75.blob new file mode 100644 index 0000000..5c7efd8 Binary files /dev/null and b/host/data/storage/modules/7f074b17-56ed-47b4-92b7-e656effc0f75.blob differ diff --git a/host/data/storage/modules/80004eaa-41ea-42fb-91e0-31a2ee4dbe68.blob b/host/data/storage/modules/80004eaa-41ea-42fb-91e0-31a2ee4dbe68.blob new file mode 100644 index 0000000..ad1c3cc Binary files /dev/null and b/host/data/storage/modules/80004eaa-41ea-42fb-91e0-31a2ee4dbe68.blob differ diff --git a/host/data/storage/modules/85e1b3f9-7fc2-487b-9e4a-59f45711a023.blob b/host/data/storage/modules/85e1b3f9-7fc2-487b-9e4a-59f45711a023.blob new file mode 100644 index 0000000..f3abe32 Binary files /dev/null and b/host/data/storage/modules/85e1b3f9-7fc2-487b-9e4a-59f45711a023.blob differ diff --git a/host/data/storage/modules/8aa708fb-439c-4b12-9d03-c6f159ee2745.blob b/host/data/storage/modules/8aa708fb-439c-4b12-9d03-c6f159ee2745.blob new file mode 100644 index 0000000..fb1032b Binary files /dev/null and b/host/data/storage/modules/8aa708fb-439c-4b12-9d03-c6f159ee2745.blob differ diff --git a/host/data/storage/modules/8aeef10a-dda7-49b8-a49d-0abbf22bdfdd.blob b/host/data/storage/modules/8aeef10a-dda7-49b8-a49d-0abbf22bdfdd.blob new file mode 100644 index 0000000..8edf7f5 Binary files /dev/null and b/host/data/storage/modules/8aeef10a-dda7-49b8-a49d-0abbf22bdfdd.blob differ diff --git a/host/data/storage/modules/8d13959e-edb4-4ba5-a40f-b39eb320be58.blob b/host/data/storage/modules/8d13959e-edb4-4ba5-a40f-b39eb320be58.blob new file mode 100644 index 0000000..39c9996 Binary files /dev/null and b/host/data/storage/modules/8d13959e-edb4-4ba5-a40f-b39eb320be58.blob differ diff --git a/host/data/storage/modules/8e1540ef-6793-47a5-8e18-5ae45584692f.blob b/host/data/storage/modules/8e1540ef-6793-47a5-8e18-5ae45584692f.blob new file mode 100644 index 0000000..32bbb23 Binary files /dev/null and b/host/data/storage/modules/8e1540ef-6793-47a5-8e18-5ae45584692f.blob differ diff --git a/host/data/storage/modules/8f53d40b-37e2-4690-8fd4-4f5c310dd8be.blob b/host/data/storage/modules/8f53d40b-37e2-4690-8fd4-4f5c310dd8be.blob new file mode 100644 index 0000000..689c123 Binary files /dev/null and b/host/data/storage/modules/8f53d40b-37e2-4690-8fd4-4f5c310dd8be.blob differ diff --git a/host/data/storage/modules/90ab4a7a-93e6-49b1-8b92-9b7278506555.blob b/host/data/storage/modules/90ab4a7a-93e6-49b1-8b92-9b7278506555.blob new file mode 100644 index 0000000..1b012ba Binary files /dev/null and b/host/data/storage/modules/90ab4a7a-93e6-49b1-8b92-9b7278506555.blob differ diff --git a/host/data/storage/modules/927a2103-9eb1-41d0-b353-56e67b608d33.blob b/host/data/storage/modules/927a2103-9eb1-41d0-b353-56e67b608d33.blob new file mode 100644 index 0000000..5f43cff Binary files /dev/null and b/host/data/storage/modules/927a2103-9eb1-41d0-b353-56e67b608d33.blob differ diff --git a/host/data/storage/modules/94eb4b7f-f69a-414a-80fb-11ea76303897.blob b/host/data/storage/modules/94eb4b7f-f69a-414a-80fb-11ea76303897.blob new file mode 100644 index 0000000..3275784 Binary files /dev/null and b/host/data/storage/modules/94eb4b7f-f69a-414a-80fb-11ea76303897.blob differ diff --git a/host/data/storage/modules/9685ce23-0cd6-47b4-8d69-55291a975619.blob b/host/data/storage/modules/9685ce23-0cd6-47b4-8d69-55291a975619.blob new file mode 100644 index 0000000..2ee3f48 Binary files /dev/null and b/host/data/storage/modules/9685ce23-0cd6-47b4-8d69-55291a975619.blob differ diff --git a/host/data/storage/modules/98991433-999e-49bb-9f43-df5a44dc1f74.blob b/host/data/storage/modules/98991433-999e-49bb-9f43-df5a44dc1f74.blob new file mode 100644 index 0000000..6c2152b Binary files /dev/null and b/host/data/storage/modules/98991433-999e-49bb-9f43-df5a44dc1f74.blob differ diff --git a/host/data/storage/modules/995f8ede-e2fe-4b28-b6cc-5d53a1d08319.blob b/host/data/storage/modules/995f8ede-e2fe-4b28-b6cc-5d53a1d08319.blob new file mode 100644 index 0000000..75c9323 Binary files /dev/null and b/host/data/storage/modules/995f8ede-e2fe-4b28-b6cc-5d53a1d08319.blob differ diff --git a/host/data/storage/modules/9a0aeed6-668e-4487-bb41-0b03bc82f4ad.blob b/host/data/storage/modules/9a0aeed6-668e-4487-bb41-0b03bc82f4ad.blob new file mode 100644 index 0000000..8f35128 Binary files /dev/null and b/host/data/storage/modules/9a0aeed6-668e-4487-bb41-0b03bc82f4ad.blob differ diff --git a/host/data/storage/modules/9b5c1b15-7e57-41f1-9433-b50286cfb597.blob b/host/data/storage/modules/9b5c1b15-7e57-41f1-9433-b50286cfb597.blob new file mode 100644 index 0000000..561daab Binary files /dev/null and b/host/data/storage/modules/9b5c1b15-7e57-41f1-9433-b50286cfb597.blob differ diff --git a/host/data/storage/modules/9beb7a23-91d1-4ec9-a120-9beaaa1bed26.blob b/host/data/storage/modules/9beb7a23-91d1-4ec9-a120-9beaaa1bed26.blob new file mode 100644 index 0000000..d28db0f Binary files /dev/null and b/host/data/storage/modules/9beb7a23-91d1-4ec9-a120-9beaaa1bed26.blob differ diff --git a/host/data/storage/modules/9c0cdf7f-5ab5-477d-8bef-00c2596dfe66.blob b/host/data/storage/modules/9c0cdf7f-5ab5-477d-8bef-00c2596dfe66.blob new file mode 100644 index 0000000..2047661 Binary files /dev/null and b/host/data/storage/modules/9c0cdf7f-5ab5-477d-8bef-00c2596dfe66.blob differ diff --git a/host/data/storage/modules/9dc0f59d-fbe0-4aeb-be42-aa25c5877f0b.blob b/host/data/storage/modules/9dc0f59d-fbe0-4aeb-be42-aa25c5877f0b.blob new file mode 100644 index 0000000..f1133a0 Binary files /dev/null and b/host/data/storage/modules/9dc0f59d-fbe0-4aeb-be42-aa25c5877f0b.blob differ diff --git a/host/data/storage/modules/9def96ff-b647-4965-98d8-232bef25213c.blob b/host/data/storage/modules/9def96ff-b647-4965-98d8-232bef25213c.blob new file mode 100644 index 0000000..d603aa5 Binary files /dev/null and b/host/data/storage/modules/9def96ff-b647-4965-98d8-232bef25213c.blob differ diff --git a/host/data/storage/modules/9dfcd309-2d08-4e7b-a72a-036f030d107a.blob b/host/data/storage/modules/9dfcd309-2d08-4e7b-a72a-036f030d107a.blob new file mode 100644 index 0000000..12087f0 Binary files /dev/null and b/host/data/storage/modules/9dfcd309-2d08-4e7b-a72a-036f030d107a.blob differ diff --git a/host/data/storage/modules/9e9b9bcc-90f9-4292-887e-b240ebfe43d1.blob b/host/data/storage/modules/9e9b9bcc-90f9-4292-887e-b240ebfe43d1.blob new file mode 100644 index 0000000..68e38a1 Binary files /dev/null and b/host/data/storage/modules/9e9b9bcc-90f9-4292-887e-b240ebfe43d1.blob differ diff --git a/host/data/storage/modules/9fb417a0-b6eb-4444-8886-cad745c1d90a.blob b/host/data/storage/modules/9fb417a0-b6eb-4444-8886-cad745c1d90a.blob new file mode 100644 index 0000000..796c6f5 Binary files /dev/null and b/host/data/storage/modules/9fb417a0-b6eb-4444-8886-cad745c1d90a.blob differ diff --git a/host/data/storage/modules/a1b1b7be-276f-4559-bda6-f5cf4e435d2d.blob b/host/data/storage/modules/a1b1b7be-276f-4559-bda6-f5cf4e435d2d.blob new file mode 100644 index 0000000..28edd16 Binary files /dev/null and b/host/data/storage/modules/a1b1b7be-276f-4559-bda6-f5cf4e435d2d.blob differ diff --git a/host/data/storage/modules/a1e0aaad-6fc8-4879-813d-a8baba7f7f59.blob b/host/data/storage/modules/a1e0aaad-6fc8-4879-813d-a8baba7f7f59.blob new file mode 100644 index 0000000..5b47fc6 Binary files /dev/null and b/host/data/storage/modules/a1e0aaad-6fc8-4879-813d-a8baba7f7f59.blob differ diff --git a/host/data/storage/modules/a2c09d9c-ec34-41c6-8b0e-d71c9b9ff845.blob b/host/data/storage/modules/a2c09d9c-ec34-41c6-8b0e-d71c9b9ff845.blob new file mode 100644 index 0000000..7d3cd0c Binary files /dev/null and b/host/data/storage/modules/a2c09d9c-ec34-41c6-8b0e-d71c9b9ff845.blob differ diff --git a/host/data/storage/modules/a45770ad-e178-4578-9312-3847c06a640d.blob b/host/data/storage/modules/a45770ad-e178-4578-9312-3847c06a640d.blob new file mode 100644 index 0000000..b5e6a1b Binary files /dev/null and b/host/data/storage/modules/a45770ad-e178-4578-9312-3847c06a640d.blob differ diff --git a/host/data/storage/modules/a50db92b-c62e-4f00-b619-136ec16c7b02.blob b/host/data/storage/modules/a50db92b-c62e-4f00-b619-136ec16c7b02.blob new file mode 100644 index 0000000..27bd048 Binary files /dev/null and b/host/data/storage/modules/a50db92b-c62e-4f00-b619-136ec16c7b02.blob differ diff --git a/host/data/storage/modules/a552bace-7ac7-4fb6-949d-aee6d2dc7fd6.blob b/host/data/storage/modules/a552bace-7ac7-4fb6-949d-aee6d2dc7fd6.blob new file mode 100644 index 0000000..5d15701 Binary files /dev/null and b/host/data/storage/modules/a552bace-7ac7-4fb6-949d-aee6d2dc7fd6.blob differ diff --git a/host/data/storage/modules/a5eb59b3-7414-4ef3-a7e8-df2716f1cc65.blob b/host/data/storage/modules/a5eb59b3-7414-4ef3-a7e8-df2716f1cc65.blob new file mode 100644 index 0000000..43da491 Binary files /dev/null and b/host/data/storage/modules/a5eb59b3-7414-4ef3-a7e8-df2716f1cc65.blob differ diff --git a/host/data/storage/modules/a656a1f6-96c8-44c7-af34-764ee36387af.blob b/host/data/storage/modules/a656a1f6-96c8-44c7-af34-764ee36387af.blob new file mode 100644 index 0000000..7b307a7 Binary files /dev/null and b/host/data/storage/modules/a656a1f6-96c8-44c7-af34-764ee36387af.blob differ diff --git a/host/data/storage/modules/a76bb33f-4dfc-4ac8-92b7-32aa1e091521.blob b/host/data/storage/modules/a76bb33f-4dfc-4ac8-92b7-32aa1e091521.blob new file mode 100644 index 0000000..a94af80 Binary files /dev/null and b/host/data/storage/modules/a76bb33f-4dfc-4ac8-92b7-32aa1e091521.blob differ diff --git a/host/data/storage/modules/a79ca7d4-ef64-4496-a872-47abd3834833.blob b/host/data/storage/modules/a79ca7d4-ef64-4496-a872-47abd3834833.blob new file mode 100644 index 0000000..06caf29 Binary files /dev/null and b/host/data/storage/modules/a79ca7d4-ef64-4496-a872-47abd3834833.blob differ diff --git a/host/data/storage/modules/a9e7739c-b434-4f41-ba69-8b6041116b3a.blob b/host/data/storage/modules/a9e7739c-b434-4f41-ba69-8b6041116b3a.blob new file mode 100644 index 0000000..6da6048 Binary files /dev/null and b/host/data/storage/modules/a9e7739c-b434-4f41-ba69-8b6041116b3a.blob differ diff --git a/host/data/storage/modules/a9fd2b57-06f1-421a-af43-01bd97690f73.blob b/host/data/storage/modules/a9fd2b57-06f1-421a-af43-01bd97690f73.blob new file mode 100644 index 0000000..0658fda Binary files /dev/null and b/host/data/storage/modules/a9fd2b57-06f1-421a-af43-01bd97690f73.blob differ diff --git a/host/data/storage/modules/aa4029c8-37b0-44d5-8e34-7f734a9ac100.blob b/host/data/storage/modules/aa4029c8-37b0-44d5-8e34-7f734a9ac100.blob new file mode 100644 index 0000000..0695b07 Binary files /dev/null and b/host/data/storage/modules/aa4029c8-37b0-44d5-8e34-7f734a9ac100.blob differ diff --git a/host/data/storage/modules/ac674584-0975-4dd2-923b-bdd2dfb4acf0.blob b/host/data/storage/modules/ac674584-0975-4dd2-923b-bdd2dfb4acf0.blob new file mode 100644 index 0000000..0e84000 Binary files /dev/null and b/host/data/storage/modules/ac674584-0975-4dd2-923b-bdd2dfb4acf0.blob differ diff --git a/host/data/storage/modules/ad49f0ba-c363-44db-a47b-a8ba9773cd47.blob b/host/data/storage/modules/ad49f0ba-c363-44db-a47b-a8ba9773cd47.blob new file mode 100644 index 0000000..2ab5a0d Binary files /dev/null and b/host/data/storage/modules/ad49f0ba-c363-44db-a47b-a8ba9773cd47.blob differ diff --git a/host/data/storage/modules/b0a5fdec-a11e-4d0c-8592-db36dd6576fe.blob b/host/data/storage/modules/b0a5fdec-a11e-4d0c-8592-db36dd6576fe.blob new file mode 100644 index 0000000..f3b16d9 Binary files /dev/null and b/host/data/storage/modules/b0a5fdec-a11e-4d0c-8592-db36dd6576fe.blob differ diff --git a/host/data/storage/modules/b12b3963-0714-4702-a477-c9c6fa8deb9f.blob b/host/data/storage/modules/b12b3963-0714-4702-a477-c9c6fa8deb9f.blob new file mode 100644 index 0000000..c1972a2 Binary files /dev/null and b/host/data/storage/modules/b12b3963-0714-4702-a477-c9c6fa8deb9f.blob differ diff --git a/host/data/storage/modules/b161a40e-2bd2-4dde-98e5-ee97a825a396.blob b/host/data/storage/modules/b161a40e-2bd2-4dde-98e5-ee97a825a396.blob new file mode 100644 index 0000000..9d47629 Binary files /dev/null and b/host/data/storage/modules/b161a40e-2bd2-4dde-98e5-ee97a825a396.blob differ diff --git a/host/data/storage/modules/b47532bb-4c4d-452f-8438-4d949b5eafa2.blob b/host/data/storage/modules/b47532bb-4c4d-452f-8438-4d949b5eafa2.blob new file mode 100644 index 0000000..2cd4cf6 Binary files /dev/null and b/host/data/storage/modules/b47532bb-4c4d-452f-8438-4d949b5eafa2.blob differ diff --git a/host/data/storage/modules/b536d2f6-a625-4d25-a66f-7be4d114af9f.blob b/host/data/storage/modules/b536d2f6-a625-4d25-a66f-7be4d114af9f.blob new file mode 100644 index 0000000..71e4cec Binary files /dev/null and b/host/data/storage/modules/b536d2f6-a625-4d25-a66f-7be4d114af9f.blob differ diff --git a/host/data/storage/modules/b6fb177e-c2ee-4c87-8adc-69758d39bd34.blob b/host/data/storage/modules/b6fb177e-c2ee-4c87-8adc-69758d39bd34.blob new file mode 100644 index 0000000..a537446 Binary files /dev/null and b/host/data/storage/modules/b6fb177e-c2ee-4c87-8adc-69758d39bd34.blob differ diff --git a/host/data/storage/modules/b8043c8a-0c5f-4275-947d-943e9204b8ae.blob b/host/data/storage/modules/b8043c8a-0c5f-4275-947d-943e9204b8ae.blob new file mode 100644 index 0000000..a205b39 Binary files /dev/null and b/host/data/storage/modules/b8043c8a-0c5f-4275-947d-943e9204b8ae.blob differ diff --git a/host/data/storage/modules/b8b09c50-39e3-47e9-9fff-8df4a0209cf8.blob b/host/data/storage/modules/b8b09c50-39e3-47e9-9fff-8df4a0209cf8.blob new file mode 100644 index 0000000..0281f9a Binary files /dev/null and b/host/data/storage/modules/b8b09c50-39e3-47e9-9fff-8df4a0209cf8.blob differ diff --git a/host/data/storage/modules/bad06820-0fff-44f6-9ef3-9d64fa3cbd43.blob b/host/data/storage/modules/bad06820-0fff-44f6-9ef3-9d64fa3cbd43.blob new file mode 100644 index 0000000..0b14373 Binary files /dev/null and b/host/data/storage/modules/bad06820-0fff-44f6-9ef3-9d64fa3cbd43.blob differ diff --git a/host/data/storage/modules/bdf4ada8-48d6-4da9-8433-a8dbef55da51.blob b/host/data/storage/modules/bdf4ada8-48d6-4da9-8433-a8dbef55da51.blob new file mode 100644 index 0000000..8468267 Binary files /dev/null and b/host/data/storage/modules/bdf4ada8-48d6-4da9-8433-a8dbef55da51.blob differ diff --git a/host/data/storage/modules/be2f558c-ac4a-43e2-b8e0-976340b919e3.blob b/host/data/storage/modules/be2f558c-ac4a-43e2-b8e0-976340b919e3.blob new file mode 100644 index 0000000..9afb73d Binary files /dev/null and b/host/data/storage/modules/be2f558c-ac4a-43e2-b8e0-976340b919e3.blob differ diff --git a/host/data/storage/modules/bf8a455d-1f29-4a91-bbfa-aec72008e0a0.blob b/host/data/storage/modules/bf8a455d-1f29-4a91-bbfa-aec72008e0a0.blob new file mode 100644 index 0000000..db3e05d Binary files /dev/null and b/host/data/storage/modules/bf8a455d-1f29-4a91-bbfa-aec72008e0a0.blob differ diff --git a/host/data/storage/modules/c100d3d1-1545-49e3-975b-10b3ccf078d9.blob b/host/data/storage/modules/c100d3d1-1545-49e3-975b-10b3ccf078d9.blob new file mode 100644 index 0000000..adf4dc1 Binary files /dev/null and b/host/data/storage/modules/c100d3d1-1545-49e3-975b-10b3ccf078d9.blob differ diff --git a/host/data/storage/modules/c2ae8100-fa86-41c5-91ba-22c0dd808dd2.blob b/host/data/storage/modules/c2ae8100-fa86-41c5-91ba-22c0dd808dd2.blob new file mode 100644 index 0000000..ff4e972 Binary files /dev/null and b/host/data/storage/modules/c2ae8100-fa86-41c5-91ba-22c0dd808dd2.blob differ diff --git a/host/data/storage/modules/c2bfe71a-1bdd-4717-982d-db88b87ce245.blob b/host/data/storage/modules/c2bfe71a-1bdd-4717-982d-db88b87ce245.blob new file mode 100644 index 0000000..afcb395 Binary files /dev/null and b/host/data/storage/modules/c2bfe71a-1bdd-4717-982d-db88b87ce245.blob differ diff --git a/host/data/storage/modules/c3096191-2992-41dc-a8f4-b428143b5a1c.blob b/host/data/storage/modules/c3096191-2992-41dc-a8f4-b428143b5a1c.blob new file mode 100644 index 0000000..f02c584 Binary files /dev/null and b/host/data/storage/modules/c3096191-2992-41dc-a8f4-b428143b5a1c.blob differ diff --git a/host/data/storage/modules/c368baa6-61d7-45ea-afc8-81970a0d56f1.blob b/host/data/storage/modules/c368baa6-61d7-45ea-afc8-81970a0d56f1.blob new file mode 100644 index 0000000..250f55b Binary files /dev/null and b/host/data/storage/modules/c368baa6-61d7-45ea-afc8-81970a0d56f1.blob differ diff --git a/host/data/storage/modules/c43aa46c-4ac2-4a79-8059-99954d75ebf5.blob b/host/data/storage/modules/c43aa46c-4ac2-4a79-8059-99954d75ebf5.blob new file mode 100644 index 0000000..c6a275a Binary files /dev/null and b/host/data/storage/modules/c43aa46c-4ac2-4a79-8059-99954d75ebf5.blob differ diff --git a/host/data/storage/modules/c7ab6940-ddb5-4d89-a2c8-05b867b29bef.blob b/host/data/storage/modules/c7ab6940-ddb5-4d89-a2c8-05b867b29bef.blob new file mode 100644 index 0000000..6d87f8b Binary files /dev/null and b/host/data/storage/modules/c7ab6940-ddb5-4d89-a2c8-05b867b29bef.blob differ diff --git a/host/data/storage/modules/c9815584-fc7c-48d2-bbc6-5a662d69e2d6.blob b/host/data/storage/modules/c9815584-fc7c-48d2-bbc6-5a662d69e2d6.blob new file mode 100644 index 0000000..660dc17 Binary files /dev/null and b/host/data/storage/modules/c9815584-fc7c-48d2-bbc6-5a662d69e2d6.blob differ diff --git a/host/data/storage/modules/cb662980-f07f-4130-8051-c54fe2a05bb7.blob b/host/data/storage/modules/cb662980-f07f-4130-8051-c54fe2a05bb7.blob new file mode 100644 index 0000000..1c29360 Binary files /dev/null and b/host/data/storage/modules/cb662980-f07f-4130-8051-c54fe2a05bb7.blob differ diff --git a/host/data/storage/modules/cc381913-39f8-4582-858c-8502492f0b0d.blob b/host/data/storage/modules/cc381913-39f8-4582-858c-8502492f0b0d.blob new file mode 100644 index 0000000..2b1c252 Binary files /dev/null and b/host/data/storage/modules/cc381913-39f8-4582-858c-8502492f0b0d.blob differ diff --git a/host/data/storage/modules/cc870fa3-8051-44d2-9cb0-6aefeb155120.blob b/host/data/storage/modules/cc870fa3-8051-44d2-9cb0-6aefeb155120.blob new file mode 100644 index 0000000..e6533ce Binary files /dev/null and b/host/data/storage/modules/cc870fa3-8051-44d2-9cb0-6aefeb155120.blob differ diff --git a/host/data/storage/modules/cebd59b1-c75d-420d-995f-adafbd170c72.blob b/host/data/storage/modules/cebd59b1-c75d-420d-995f-adafbd170c72.blob new file mode 100644 index 0000000..d6eb81b Binary files /dev/null and b/host/data/storage/modules/cebd59b1-c75d-420d-995f-adafbd170c72.blob differ diff --git a/host/data/storage/modules/ced7a1c6-097f-40c8-aa94-3bd0d32c7e61.blob b/host/data/storage/modules/ced7a1c6-097f-40c8-aa94-3bd0d32c7e61.blob new file mode 100644 index 0000000..da89d13 Binary files /dev/null and b/host/data/storage/modules/ced7a1c6-097f-40c8-aa94-3bd0d32c7e61.blob differ diff --git a/host/data/storage/modules/d0548799-1c11-4f1b-a899-d4f91229da12.blob b/host/data/storage/modules/d0548799-1c11-4f1b-a899-d4f91229da12.blob new file mode 100644 index 0000000..af9e8f5 Binary files /dev/null and b/host/data/storage/modules/d0548799-1c11-4f1b-a899-d4f91229da12.blob differ diff --git a/host/data/storage/modules/d29ada61-226c-4e18-9f2c-f526e2a93671.blob b/host/data/storage/modules/d29ada61-226c-4e18-9f2c-f526e2a93671.blob new file mode 100644 index 0000000..2acb3f2 Binary files /dev/null and b/host/data/storage/modules/d29ada61-226c-4e18-9f2c-f526e2a93671.blob differ diff --git a/host/data/storage/modules/d315b4e5-ed3e-4034-8bd5-a95bfafae83e.blob b/host/data/storage/modules/d315b4e5-ed3e-4034-8bd5-a95bfafae83e.blob new file mode 100644 index 0000000..e3ba75c Binary files /dev/null and b/host/data/storage/modules/d315b4e5-ed3e-4034-8bd5-a95bfafae83e.blob differ diff --git a/host/data/storage/modules/d3c83e44-2aaa-46e4-bdc6-7a9988f9e76a.blob b/host/data/storage/modules/d3c83e44-2aaa-46e4-bdc6-7a9988f9e76a.blob new file mode 100644 index 0000000..8e49eb3 Binary files /dev/null and b/host/data/storage/modules/d3c83e44-2aaa-46e4-bdc6-7a9988f9e76a.blob differ diff --git a/host/data/storage/modules/d4e1fd32-97e7-4cb4-85c9-92388c6e4d7d.blob b/host/data/storage/modules/d4e1fd32-97e7-4cb4-85c9-92388c6e4d7d.blob new file mode 100644 index 0000000..99ee5bd Binary files /dev/null and b/host/data/storage/modules/d4e1fd32-97e7-4cb4-85c9-92388c6e4d7d.blob differ diff --git a/host/data/storage/modules/d6900676-12a2-450d-811e-c609462e0e20.blob b/host/data/storage/modules/d6900676-12a2-450d-811e-c609462e0e20.blob new file mode 100644 index 0000000..0b8e194 Binary files /dev/null and b/host/data/storage/modules/d6900676-12a2-450d-811e-c609462e0e20.blob differ diff --git a/host/data/storage/modules/d6a9a5a9-aa8a-4e34-a129-75e38a215308.blob b/host/data/storage/modules/d6a9a5a9-aa8a-4e34-a129-75e38a215308.blob new file mode 100644 index 0000000..ddc2386 Binary files /dev/null and b/host/data/storage/modules/d6a9a5a9-aa8a-4e34-a129-75e38a215308.blob differ diff --git a/host/data/storage/modules/d6c0d0a8-7e9f-4783-9854-b3c91ed427da.blob b/host/data/storage/modules/d6c0d0a8-7e9f-4783-9854-b3c91ed427da.blob new file mode 100644 index 0000000..a845aa6 Binary files /dev/null and b/host/data/storage/modules/d6c0d0a8-7e9f-4783-9854-b3c91ed427da.blob differ diff --git a/host/data/storage/modules/d7533d47-3967-457d-b9ef-03ed9b843789.blob b/host/data/storage/modules/d7533d47-3967-457d-b9ef-03ed9b843789.blob new file mode 100644 index 0000000..f93219e Binary files /dev/null and b/host/data/storage/modules/d7533d47-3967-457d-b9ef-03ed9b843789.blob differ diff --git a/host/data/storage/modules/d7b9ba0c-6f08-4744-a3f9-aeb10cb1656d.blob b/host/data/storage/modules/d7b9ba0c-6f08-4744-a3f9-aeb10cb1656d.blob new file mode 100644 index 0000000..c7b9fb4 Binary files /dev/null and b/host/data/storage/modules/d7b9ba0c-6f08-4744-a3f9-aeb10cb1656d.blob differ diff --git a/host/data/storage/modules/db146456-f915-41f0-aa09-62072ed52305.blob b/host/data/storage/modules/db146456-f915-41f0-aa09-62072ed52305.blob new file mode 100644 index 0000000..68aac93 Binary files /dev/null and b/host/data/storage/modules/db146456-f915-41f0-aa09-62072ed52305.blob differ diff --git a/host/data/storage/modules/dc08c375-42e2-4b23-8aab-ecef494aba94.blob b/host/data/storage/modules/dc08c375-42e2-4b23-8aab-ecef494aba94.blob new file mode 100644 index 0000000..7ed87ca Binary files /dev/null and b/host/data/storage/modules/dc08c375-42e2-4b23-8aab-ecef494aba94.blob differ diff --git a/host/data/storage/modules/df4abd6b-b15b-40d9-8599-cd51fe46a54d.blob b/host/data/storage/modules/df4abd6b-b15b-40d9-8599-cd51fe46a54d.blob new file mode 100644 index 0000000..8bd6c0e Binary files /dev/null and b/host/data/storage/modules/df4abd6b-b15b-40d9-8599-cd51fe46a54d.blob differ diff --git a/host/data/storage/modules/e12eef44-3a87-4ead-a371-c3e4e51e7d2f.blob b/host/data/storage/modules/e12eef44-3a87-4ead-a371-c3e4e51e7d2f.blob new file mode 100644 index 0000000..c69c9bf Binary files /dev/null and b/host/data/storage/modules/e12eef44-3a87-4ead-a371-c3e4e51e7d2f.blob differ diff --git a/host/data/storage/modules/e161ab62-6512-442c-b946-93bce873f2ac.blob b/host/data/storage/modules/e161ab62-6512-442c-b946-93bce873f2ac.blob new file mode 100644 index 0000000..2a1ffdd Binary files /dev/null and b/host/data/storage/modules/e161ab62-6512-442c-b946-93bce873f2ac.blob differ diff --git a/host/data/storage/modules/e297b414-92ef-4317-be2f-de4cbd524f9c.blob b/host/data/storage/modules/e297b414-92ef-4317-be2f-de4cbd524f9c.blob new file mode 100644 index 0000000..d5f38fb Binary files /dev/null and b/host/data/storage/modules/e297b414-92ef-4317-be2f-de4cbd524f9c.blob differ diff --git a/host/data/storage/modules/e2d1e78d-cc97-4ed1-9b60-47755586e742.blob b/host/data/storage/modules/e2d1e78d-cc97-4ed1-9b60-47755586e742.blob new file mode 100644 index 0000000..1a09052 Binary files /dev/null and b/host/data/storage/modules/e2d1e78d-cc97-4ed1-9b60-47755586e742.blob differ diff --git a/host/data/storage/modules/e37e32e5-1d55-4ac7-b659-26f6a2f031e1.blob b/host/data/storage/modules/e37e32e5-1d55-4ac7-b659-26f6a2f031e1.blob new file mode 100644 index 0000000..1c23e2d Binary files /dev/null and b/host/data/storage/modules/e37e32e5-1d55-4ac7-b659-26f6a2f031e1.blob differ diff --git a/host/data/storage/modules/e6f2f2f6-6d0e-40c9-aee3-6903b648ebde.blob b/host/data/storage/modules/e6f2f2f6-6d0e-40c9-aee3-6903b648ebde.blob new file mode 100644 index 0000000..11df94d Binary files /dev/null and b/host/data/storage/modules/e6f2f2f6-6d0e-40c9-aee3-6903b648ebde.blob differ diff --git a/host/data/storage/modules/e815033c-b626-4892-b20b-24b837be9835.blob b/host/data/storage/modules/e815033c-b626-4892-b20b-24b837be9835.blob new file mode 100644 index 0000000..a3a865f Binary files /dev/null and b/host/data/storage/modules/e815033c-b626-4892-b20b-24b837be9835.blob differ diff --git a/host/data/storage/modules/e85c7fd1-f41a-4f2f-abaa-06cc77cc7e15.blob b/host/data/storage/modules/e85c7fd1-f41a-4f2f-abaa-06cc77cc7e15.blob new file mode 100644 index 0000000..ce52b54 Binary files /dev/null and b/host/data/storage/modules/e85c7fd1-f41a-4f2f-abaa-06cc77cc7e15.blob differ diff --git a/host/data/storage/modules/e8fd6897-d68d-4152-bf5b-79c88f7af47a.blob b/host/data/storage/modules/e8fd6897-d68d-4152-bf5b-79c88f7af47a.blob new file mode 100644 index 0000000..7176099 Binary files /dev/null and b/host/data/storage/modules/e8fd6897-d68d-4152-bf5b-79c88f7af47a.blob differ diff --git a/host/data/storage/modules/eaa40c84-a9a1-4042-84a5-158aaa63b580.blob b/host/data/storage/modules/eaa40c84-a9a1-4042-84a5-158aaa63b580.blob new file mode 100644 index 0000000..1033dd3 Binary files /dev/null and b/host/data/storage/modules/eaa40c84-a9a1-4042-84a5-158aaa63b580.blob differ diff --git a/host/data/storage/modules/ec529c53-fa32-49a1-8a0e-caff30f9793a.blob b/host/data/storage/modules/ec529c53-fa32-49a1-8a0e-caff30f9793a.blob new file mode 100644 index 0000000..cc0b60a Binary files /dev/null and b/host/data/storage/modules/ec529c53-fa32-49a1-8a0e-caff30f9793a.blob differ diff --git a/host/data/storage/modules/eca63f75-929c-4f3c-9d26-314cf5bc5a92.blob b/host/data/storage/modules/eca63f75-929c-4f3c-9d26-314cf5bc5a92.blob new file mode 100644 index 0000000..4c5d5c5 Binary files /dev/null and b/host/data/storage/modules/eca63f75-929c-4f3c-9d26-314cf5bc5a92.blob differ diff --git a/host/data/storage/modules/ed0e6a36-a7a2-42fe-94a9-ded219c9bbcb.blob b/host/data/storage/modules/ed0e6a36-a7a2-42fe-94a9-ded219c9bbcb.blob new file mode 100644 index 0000000..df28707 Binary files /dev/null and b/host/data/storage/modules/ed0e6a36-a7a2-42fe-94a9-ded219c9bbcb.blob differ diff --git a/host/data/storage/modules/ed1b82d5-7955-4e0d-b65b-50c48f3dceb3.blob b/host/data/storage/modules/ed1b82d5-7955-4e0d-b65b-50c48f3dceb3.blob new file mode 100644 index 0000000..092e124 Binary files /dev/null and b/host/data/storage/modules/ed1b82d5-7955-4e0d-b65b-50c48f3dceb3.blob differ diff --git a/host/data/storage/modules/ed6e2ad1-9c0c-43d4-a1a8-4098e8d01173.blob b/host/data/storage/modules/ed6e2ad1-9c0c-43d4-a1a8-4098e8d01173.blob new file mode 100644 index 0000000..20c5ab2 Binary files /dev/null and b/host/data/storage/modules/ed6e2ad1-9c0c-43d4-a1a8-4098e8d01173.blob differ diff --git a/host/data/storage/modules/edb0de87-a152-4b65-98a8-d5558a4d7064.blob b/host/data/storage/modules/edb0de87-a152-4b65-98a8-d5558a4d7064.blob new file mode 100644 index 0000000..1506acf Binary files /dev/null and b/host/data/storage/modules/edb0de87-a152-4b65-98a8-d5558a4d7064.blob differ diff --git a/host/data/storage/modules/eeb42053-3671-4192-9d59-1850cbf9291d.blob b/host/data/storage/modules/eeb42053-3671-4192-9d59-1850cbf9291d.blob new file mode 100644 index 0000000..01fde95 Binary files /dev/null and b/host/data/storage/modules/eeb42053-3671-4192-9d59-1850cbf9291d.blob differ diff --git a/host/data/storage/modules/eef993db-7683-4132-97de-6073e1fe7710.blob b/host/data/storage/modules/eef993db-7683-4132-97de-6073e1fe7710.blob new file mode 100644 index 0000000..0274c54 Binary files /dev/null and b/host/data/storage/modules/eef993db-7683-4132-97de-6073e1fe7710.blob differ diff --git a/host/data/storage/modules/ef8b51a8-b812-423c-89ed-6093c2b53e23.blob b/host/data/storage/modules/ef8b51a8-b812-423c-89ed-6093c2b53e23.blob new file mode 100644 index 0000000..9f76c25 Binary files /dev/null and b/host/data/storage/modules/ef8b51a8-b812-423c-89ed-6093c2b53e23.blob differ diff --git a/host/data/storage/modules/ef8fdd81-89c9-4ae2-91b8-08a1a94c7eba.blob b/host/data/storage/modules/ef8fdd81-89c9-4ae2-91b8-08a1a94c7eba.blob new file mode 100644 index 0000000..dad8195 Binary files /dev/null and b/host/data/storage/modules/ef8fdd81-89c9-4ae2-91b8-08a1a94c7eba.blob differ diff --git a/host/data/storage/modules/efb73c0f-d55d-4515-89a3-5938a52360a8.blob b/host/data/storage/modules/efb73c0f-d55d-4515-89a3-5938a52360a8.blob new file mode 100644 index 0000000..550ba8a Binary files /dev/null and b/host/data/storage/modules/efb73c0f-d55d-4515-89a3-5938a52360a8.blob differ diff --git a/host/data/storage/modules/f028e249-301c-4cfa-b00e-4e4358827b50.blob b/host/data/storage/modules/f028e249-301c-4cfa-b00e-4e4358827b50.blob new file mode 100644 index 0000000..7970157 Binary files /dev/null and b/host/data/storage/modules/f028e249-301c-4cfa-b00e-4e4358827b50.blob differ diff --git a/host/data/storage/modules/f5e3af00-e4d8-4bd4-9bd6-6011f20f6c9a.blob b/host/data/storage/modules/f5e3af00-e4d8-4bd4-9bd6-6011f20f6c9a.blob new file mode 100644 index 0000000..fce8aea Binary files /dev/null and b/host/data/storage/modules/f5e3af00-e4d8-4bd4-9bd6-6011f20f6c9a.blob differ diff --git a/host/data/storage/modules/f73d05d4-c866-4898-bb8b-355680406369.blob b/host/data/storage/modules/f73d05d4-c866-4898-bb8b-355680406369.blob new file mode 100644 index 0000000..874ec0b Binary files /dev/null and b/host/data/storage/modules/f73d05d4-c866-4898-bb8b-355680406369.blob differ diff --git a/host/data/storage/modules/f786e7c1-2305-44f3-b4da-b8905d0d70d9.blob b/host/data/storage/modules/f786e7c1-2305-44f3-b4da-b8905d0d70d9.blob new file mode 100644 index 0000000..8d36743 Binary files /dev/null and b/host/data/storage/modules/f786e7c1-2305-44f3-b4da-b8905d0d70d9.blob differ diff --git a/host/data/storage/modules/f7ea7d46-3ff3-4627-8459-13492c2b9220.blob b/host/data/storage/modules/f7ea7d46-3ff3-4627-8459-13492c2b9220.blob new file mode 100644 index 0000000..51289a0 Binary files /dev/null and b/host/data/storage/modules/f7ea7d46-3ff3-4627-8459-13492c2b9220.blob differ diff --git a/host/data/storage/modules/fa4fa8e1-e19d-4ee5-8f6a-cf3893818b0a.blob b/host/data/storage/modules/fa4fa8e1-e19d-4ee5-8f6a-cf3893818b0a.blob new file mode 100644 index 0000000..c5f0c2a Binary files /dev/null and b/host/data/storage/modules/fa4fa8e1-e19d-4ee5-8f6a-cf3893818b0a.blob differ diff --git a/host/data/storage/modules/faa3033b-df71-4e82-af24-cf5a6524e44e.blob b/host/data/storage/modules/faa3033b-df71-4e82-af24-cf5a6524e44e.blob new file mode 100644 index 0000000..033c784 Binary files /dev/null and b/host/data/storage/modules/faa3033b-df71-4e82-af24-cf5a6524e44e.blob differ diff --git a/host/data/storage/modules/fac569d3-b879-4e36-a763-77b1efaf4dcf.blob b/host/data/storage/modules/fac569d3-b879-4e36-a763-77b1efaf4dcf.blob new file mode 100644 index 0000000..323a0cf Binary files /dev/null and b/host/data/storage/modules/fac569d3-b879-4e36-a763-77b1efaf4dcf.blob differ diff --git a/host/data/storage/modules/fcf3a661-6486-48c1-94a8-a769b0d86bdc.blob b/host/data/storage/modules/fcf3a661-6486-48c1-94a8-a769b0d86bdc.blob new file mode 100644 index 0000000..d8cb23a Binary files /dev/null and b/host/data/storage/modules/fcf3a661-6486-48c1-94a8-a769b0d86bdc.blob differ diff --git a/host/data/storage/modules/fdd7ee23-2991-4731-92cd-a81dbe55f03c.blob b/host/data/storage/modules/fdd7ee23-2991-4731-92cd-a81dbe55f03c.blob new file mode 100644 index 0000000..978e8ee Binary files /dev/null and b/host/data/storage/modules/fdd7ee23-2991-4731-92cd-a81dbe55f03c.blob differ diff --git a/host/data/storage/modules/fe719db9-bc8b-47d7-a7ec-9291b4657142.blob b/host/data/storage/modules/fe719db9-bc8b-47d7-a7ec-9291b4657142.blob new file mode 100644 index 0000000..9e3195a Binary files /dev/null and b/host/data/storage/modules/fe719db9-bc8b-47d7-a7ec-9291b4657142.blob differ diff --git a/host/convex/docker/env.example b/host/env.example similarity index 71% rename from host/convex/docker/env.example rename to host/env.example index 513acd8..d5fc5f1 100644 --- a/host/convex/docker/env.example +++ b/host/env.example @@ -1,4 +1,14 @@ +# Next Envrionment Variables NETWORK=nginx-bridge +CONTAINER_NAME=techtracker-next +DOMAIN_NAME=techtracker.gbrown.org +# Port is disabled by default as suggested +# config is to have reverse proxy on the same +# network so you can just forward to the +# port on the internal network. +PORT=3000 + +# Convex Environment Variables BACKEND_TAG=00bd92723422f3bff968230c94ccdeb8c1719832 BACKEND_CONTAINER_NAME=tt-convex-backend BACKEND_DOMAIN_NAME=convex.gbrown.org diff --git a/host/next/docker/compose.yml b/host/next/docker/compose.yml deleted file mode 100644 index 1addf6b..0000000 --- a/host/next/docker/compose.yml +++ /dev/null @@ -1,18 +0,0 @@ -networks: - nginx-bridge: # You need to change this line to your defined network is as well - external: true -services: - techtracker-next: - build: - context: ../../../ - dockerfile: ./host/next/docker/Dockerfile - image: ${CONTAINER_NAME}:alpine - container_name: ${CONTAINER_NAME} - env_file: [.env] - hostname: ${CONTAINER_NAME} - domainname: ${DOMAIN_NAME} - networks: ['${NETWORK:-nginx-bridge}'] - #ports: ['${PORT}:3000'] - tty: true - stdin_open: true - restart: unless-stopped diff --git a/host/next/docker/env.example b/host/next/docker/env.example deleted file mode 100644 index c11b5ee..0000000 --- a/host/next/docker/env.example +++ /dev/null @@ -1,8 +0,0 @@ -NETWORK=nginx-bridge -CONTAINER_NAME=techtracker-next -DOMAIN_NAME=techtracker.gbrown.org -# Port is disabled by default as suggested -# config is to have reverse proxy on the same -# network so you can just forward to the -# port on the internal network. -PORT=3000 diff --git a/host/next/update b/host/update similarity index 77% rename from host/next/update rename to host/update index f18be1e..2c2b51a 100755 --- a/host/next/update +++ b/host/update @@ -2,7 +2,7 @@ set -e # Exit immediately if a command exits with a non-zero status. # --- Configuration --- -COMPOSE_FILE="./host/next/docker/compose.yml" +COMPOSE_FILE="./docker/compose.yml" DEFAULT_PROJECT_NAME="techtracker" DEV_PROJECT_NAME="dev-techtracker" # The project name for dev mode @@ -38,12 +38,12 @@ while [[ "$#" -gt 0 ]]; do done # --- Main Script Logic --- -echo "--- Pulling latest git changes ---" +echo "\n--- Pulling latest git changes ---\n" git pull -echo "--- Building Docker Compose services ${COMPOSE_PROJECT_FLAG} ---" +echo "\n--- Building Docker Compose services ${COMPOSE_PROJECT_FLAG} ---\n" sudo docker compose -p ${COMPOSE_PROJECT_FLAG} -f "${COMPOSE_FILE}" build -echo "--- Bringing down Docker Compose services ${COMPOSE_PROJECT_FLAG} ---" +echo "\n--- Bringing down Docker Compose services ${COMPOSE_PROJECT_FLAG} ---\n" sudo docker compose -p ${COMPOSE_PROJECT_FLAG} -f "${COMPOSE_FILE}" down -echo "--- Bringing up Docker Compose services ${COMPOSE_PROJECT_FLAG} in detached mode ---" +echo "\n--- Bringing up Docker Compose services ${COMPOSE_PROJECT_FLAG} in detached mode ---\n" sudo docker compose -p ${COMPOSE_PROJECT_FLAG} -f "${COMPOSE_FILE}" up -d -echo "--- Script finished successfully ---" +echo "\n--- Script finished successfully ---\n"